|
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 | |
|---|
| 1 | import React from "react";
|
|---|
| 2 | import NavbarLanding from "./components/NavbarLanding";
|
|---|
| 3 | import Hero from "./components/Hero";
|
|---|
| 4 | import Footer from "./components/Footer";
|
|---|
| 5 | import { HowItWorks } from "./components/HowItWorks";
|
|---|
| 6 | import { Who } from "./components/Who";
|
|---|
| 7 | import { Faq } from "./components/Faq";
|
|---|
| 8 | import Features from "./components/Features";
|
|---|
| 9 | import Benefits from "./components/Benefits";
|
|---|
| 10 | const 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 |
|
|---|
| 25 | export default LandingPage;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.