2024-06-15 21:49:29 +02:00
|
|
|
import About from '@/components/shared/About';
|
2024-06-18 01:27:28 +02:00
|
|
|
import DataTable from '@/components/shared/DataTable';
|
|
|
|
import Faq from '@/components/shared/FAQ';
|
2024-06-15 21:49:29 +02:00
|
|
|
import Hero from '@/components/shared/Hero';
|
|
|
|
import HowItWorks from '@/components/shared/HowItWorks';
|
|
|
|
import Newsletter from '@/components/shared/Newsletter';
|
2024-06-18 01:27:28 +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;
|