Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

83 linhas
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/Footer.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 HeaderLinks from "components/Header/HeaderLinks.js";
  14. import Parallax from "components/Parallax/Parallax.js";
  15. import styles from "assets/jss/nextjs-material-kit/pages/landingPage.js";
  16. // Sections for this page
  17. // import ProductSection from "pages-sections/LandingPage-Sections/ProductSection.js";
  18. // import TeamSection from "pages-sections/LandingPage-Sections/TeamSection.js";
  19. // import WorkSection from "pages-sections/LandingPage-Sections/WorkSection.js";
  20. const dashboardRoutes = [];
  21. const useStyles = makeStyles(styles);
  22. export default function LandingPage(props) {
  23. const classes = useStyles();
  24. const { ...rest } = props;
  25. return (
  26. <div>
  27. <Header
  28. color="transparent"
  29. routes={dashboardRoutes}
  30. brand="NextJS Material Kit"
  31. rightLinks={<HeaderLinks />}
  32. fixed
  33. changeColorOnScroll={{
  34. height: 400,
  35. color: "white",
  36. }}
  37. {...rest}
  38. />
  39. <Parallax filter responsive image={require("assets/img/landing-bg.jpg")}>
  40. <div className={classes.container}>
  41. <GridContainer>
  42. <GridItem xs={12} sm={12} md={6}>
  43. <h1 className={classes.title}>Your Story Starts With Us.</h1>
  44. <h4>
  45. Every landing page needs a small description after the big bold
  46. title, that{"'"}s why we added this text here. Add here all the
  47. information that can make you or your product create the first
  48. impression.
  49. </h4>
  50. <br />
  51. <Button
  52. color="danger"
  53. size="lg"
  54. href="https://www.youtube.com/watch?v=dQw4w9WgXcQ&ref=creativetim"
  55. target="_blank"
  56. rel="noopener noreferrer"
  57. >
  58. <i className="fas fa-play" />
  59. Watch video
  60. </Button>
  61. </GridItem>
  62. </GridContainer>
  63. </div>
  64. </Parallax>
  65. <div className={classNames(classes.main, classes.mainRaised)}>
  66. <div className={classes.container}>
  67. {/*<ProductSection />
  68. <TeamSection />
  69. <WorkSection />*/}
  70. </div>
  71. </div>
  72. <Footer />
  73. </div>
  74. );
  75. }