source: frontend/src/pages/LandingPage/LandingPage.jsx@ ff01f66

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

Fixed landing page

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