2025-04-17 08:45:49 +00:00
|
|
|
import FAQs from "@/components/faqs";
|
|
|
|
import { Header } from "@/components/header";
|
|
|
|
import { Footer } from "@/components/footer";
|
|
|
|
import { MainView } from "@/components/main-view";
|
2025-04-17 13:42:58 +00:00
|
|
|
import { PrimaryFeatures } from "@/components/primary-features";
|
2025-02-19 04:29:24 +00:00
|
|
|
|
2025-02-21 11:49:56 +00:00
|
|
|
export default function HomePage() {
|
2025-04-17 08:45:49 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Header />
|
|
|
|
<MainView />
|
2025-04-17 13:42:58 +00:00
|
|
|
<PrimaryFeatures />
|
2025-04-17 08:45:49 +00:00
|
|
|
<FAQs />
|
|
|
|
<Footer />
|
|
|
|
</>
|
|
|
|
)
|
2025-02-19 01:00:15 +00:00
|
|
|
}
|