source: frontend/src/pages/LandingPage/LandingPage.jsx@ 5c20c64

Last change on this file since 5c20c64 was 793ce2c, checked in by Andrej <asumanovski@…>, 5 months ago

Landing page design

  • Property mode set to 100644
File size: 570 bytes
RevLine 
[793ce2c]1import React from "react";
2import NavbarLanding from "./components/NavbarLanding";
3import Hero from "./components/Hero";
4import Footer from "./components/Footer";
5import { Faq } from "./components/Faq";
6import { HowItWorks } from "./components/HowItWorks";
7import { Who } from "./components/Who";
8
9const LandingPage = () => {
10 return (
11 <div data-theme="forest" className="min-h-screen w-full overflow-x-hidden">
12 <NavbarLanding />
13 <Hero />
14 <HowItWorks />
15 <Who />
16 <Faq />
17 <Footer />
18 </div>
19 );
20};
21
22export default LandingPage;
Note: See TracBrowser for help on using the repository browser.