This commit is contained in:
2025-06-18 12:51:09 +02:00
parent 28a8b65430
commit 07fd424a6b
51 changed files with 9109 additions and 0 deletions

21
src/app/(main)/page.tsx Normal file
View File

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