svrjs-nextjs-website/app/page.tsx

24 lines
577 B
TypeScript
Raw Normal View History

import About from '@/components/shared/About';
import DataTable from '@/components/shared/DataTable';
import Faq from '@/components/shared/FAQ';
import Hero from '@/components/shared/Hero';
import HowItWorks from '@/components/shared/HowItWorks';
import Newsletter from '@/components/shared/Newsletter';
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;