25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

76 lines
2.6 KiB

  1. import React from "react";
  2. // nodejs library that concatenates classes
  3. import classNames from "classnames";
  4. // @material-ui/core components
  5. import { makeStyles } from "@material-ui/core/styles";
  6. // @material-ui/icons
  7. // core components
  8. import Header from "components/Header/Header.js";
  9. import Footer from "components/Footer/FooterHome.js";
  10. import HeaderHome from "components/Header/HeaderHome.js";
  11. import styles from "assets/jss/nextjs-material-kit/pages/home.js";
  12. // Sections for this page
  13. import Carousel from "pages-sections/home/Carousel.js"
  14. import BusineesPartner from "pages-sections/home/Businees-Partner.js";
  15. import Gallery from "pages-sections/home/gallery.js";
  16. import stylecss from "../pages/home.css";
  17. //image
  18. import Logo from "assets/img/Black.png";
  19. import Wa from "assets/img/wa.png"
  20. const dashboardRoutes = [];
  21. const useStyles = makeStyles(styles);
  22. export default function LandingPage(props) {
  23. const classes = useStyles();
  24. const { ...rest } = props;
  25. console.log(stylecss.act);
  26. return (
  27. <div id="home">
  28. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"/>
  29. <Header color="dark" routes={dashboardRoutes} leftLinks={<HeaderHome />} fixed/>
  30. {/* <Parallax color="dark" responsive image={require("assets/img/bga.png")}>
  31. <div>
  32. <GridContainer>
  33. <GridItem>
  34. <div align="center">
  35. <img
  36. src={Logo} width="80%"
  37. />
  38. <br /><br/>
  39. <Button
  40. color="danger"
  41. size="lg"
  42. href="https://www.youtube.com/channel/UCRUULlhLxKUpXK1Ti4Jrjkw"
  43. target="_blank"
  44. rel="noopener noreferrer"
  45. >
  46. <i className="fas fa-play" />
  47. Watch video
  48. </Button>
  49. </div>
  50. </GridItem>
  51. </GridContainer>
  52. </div>
  53. </Parallax> */}
  54. <div className={classNames(classes.main, classes.mainRaised)} style={{marginTop:"70px"}} >
  55. <div className={classes.container}>
  56. <Carousel />
  57. {/* <CoreValue id={'section1'}/> */}
  58. <BusineesPartner />
  59. <Gallery />
  60. <a href="https://wa.me/+6287797315685" className="float" target="_blank">
  61. <i className="fa fa-whatsapp my-float"></i>
  62. </a>
  63. </div>
  64. </div><br/>
  65. <Footer />
  66. </div>
  67. );
  68. }