Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

80 rader
2.7 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 GridContainer from "components/Grid/GridContainer.js";
  11. import GridItem from "components/Grid/GridItem.js";
  12. import Button from "components/CustomButtons/Button.js";
  13. import HeaderHome from "components/Header/HeaderHome.js";
  14. import Parallax from "components/Parallax/Parallax.js";
  15. import styles from "assets/jss/nextjs-material-kit/pages/home.js";
  16. // Sections for this page
  17. import Carousel from "pages-sections/home/Carousel.js"
  18. import CoreValue from "pages-sections/home/CoreValue.js";
  19. import BusineesPartner from "pages-sections/home/Businees-Partner.js";
  20. import Gallery from "pages-sections/home/gallery.js";
  21. import stylecss from "../pages/home.css";
  22. //image
  23. import Logo from "assets/img/Black.png";
  24. import Wa from "assets/img/wa.png"
  25. const dashboardRoutes = [];
  26. const useStyles = makeStyles(styles);
  27. export default function LandingPage(props) {
  28. const classes = useStyles();
  29. const { ...rest } = props;
  30. console.log(stylecss.act);
  31. return (
  32. <div>
  33. <Header color="dark" routes={dashboardRoutes} rightLinks={<HeaderHome />} fixed/>
  34. <Parallax color="dark" responsive image={require("assets/img/bga.png")}>
  35. <div>
  36. <GridContainer>
  37. <GridItem>
  38. <div align="center">
  39. <img
  40. src={Logo} width="80%"
  41. />
  42. <br /><br/>
  43. <Button
  44. color="danger"
  45. size="lg"
  46. href="https://www.youtube.com/channel/UCRUULlhLxKUpXK1Ti4Jrjkw"
  47. target="_blank"
  48. rel="noopener noreferrer"
  49. >
  50. <i className="fas fa-play" />
  51. Watch video
  52. </Button>
  53. </div>
  54. </GridItem>
  55. </GridContainer>
  56. </div>
  57. </Parallax>
  58. <div className={classNames(classes.main, classes.mainRaised)}>
  59. <div className={classes.container}>
  60. <Carousel />
  61. <CoreValue id={'section1'}/>
  62. <BusineesPartner />
  63. {/* <Gallery /> */}
  64. <a href="https://wa.me/087797315685" target="_blank" className="float">
  65. <i className="fa fa-phone my-float"></i>
  66. </a>
  67. </div>
  68. </div><br/>
  69. <Footer />
  70. </div>
  71. );
  72. }