This commit is contained in:
2025-06-24 14:10:07 +02:00
parent bad56dd4de
commit f1e02693cf
55 changed files with 7325 additions and 1 deletions

27
src/app/page.tsx Normal file
View File

@@ -0,0 +1,27 @@
import { CallToAction } from '@/components/CallToAction'
import { Faqs } from '@/components/Faqs'
import { Footer } from '@/components/Footer'
import { Header } from '@/components/Header'
import { Hero } from '@/components/Hero'
import { Pricing } from '@/components/Pricing'
import { PrimaryFeatures } from '@/components/PrimaryFeatures'
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
import { Testimonials } from '@/components/Testimonials'
export default function Home() {
return (
<>
<Header />
<main>
<Hero />
<PrimaryFeatures />
<SecondaryFeatures />
<CallToAction />
<Testimonials />
<Pricing />
<Faqs />
</main>
<Footer />
</>
)
}