svrjs-nextjs-website/app/page.tsx

24 lines
577 B
TypeScript
Raw Normal View History

2024-06-15 14:55:33 +02:00
import About from "@/components/shared/About";
2024-06-16 15:52:48 +02:00
import DataTable from "@/components/shared/DataTable";
2024-06-15 18:41:36 +02:00
import Faq from "@/components/shared/FAQ";
2024-06-15 14:55:33 +02:00
import Hero from "@/components/shared/Hero";
import HowItWorks from "@/components/shared/HowItWorks";
2024-06-15 17:30:51 +02:00
import Newsletter from "@/components/shared/Newsletter";
2024-06-16 15:37:26 +02:00
import Partners from "@/components/shared/Partners";
2024-06-15 14:55:33 +02:00
const RootPage = () => {
return (
<>
<Hero />
<HowItWorks />
2024-06-16 15:37:26 +02:00
<Partners />
2024-06-15 17:30:51 +02:00
<About />
2024-06-16 15:52:48 +02:00
{/* <DataTable /> */}
2024-06-15 17:30:51 +02:00
<Newsletter />
2024-06-15 18:41:36 +02:00
<Faq />
2024-06-15 14:55:33 +02:00
</>
);
};
export default RootPage;