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";
|
2024-09-07 09:52:44 +02:00
|
|
|
import Features from "@/components/shared/Features";
|
2024-06-15 17:30:51 +02:00
|
|
|
import Newsletter from "@/components/shared/Newsletter";
|
2024-09-07 09:52:44 +02:00
|
|
|
import DemoVideo from "@/components/shared/DemoVideo";
|
2024-07-23 19:08:18 +02:00
|
|
|
import Testimonials from "@/components/shared/Testimonials";
|
2024-06-15 14:55:33 +02:00
|
|
|
|
|
|
|
const RootPage = () => {
|
2024-09-07 09:12:48 +02:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Hero />
|
2024-09-07 09:52:44 +02:00
|
|
|
<Features />
|
2024-09-07 09:12:48 +02:00
|
|
|
<Testimonials />
|
2024-09-07 09:52:44 +02:00
|
|
|
<DemoVideo />
|
2024-09-07 09:12:48 +02:00
|
|
|
<About />
|
|
|
|
<Faq />
|
|
|
|
<Newsletter />
|
|
|
|
</>
|
|
|
|
);
|
2024-06-15 14:55:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default RootPage;
|