|
Last change
on this file since 3ebe47c was 793ce2c, checked in by Andrej <asumanovski@…>, 5 months ago |
|
Landing page design
|
-
Property mode
set to
100644
|
|
File size:
570 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 { Faq } from "./components/Faq";
|
|---|
| 6 | import { HowItWorks } from "./components/HowItWorks";
|
|---|
| 7 | import { Who } from "./components/Who";
|
|---|
| 8 |
|
|---|
| 9 | const 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 |
|
|---|
| 22 | export default LandingPage;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.