This commit is contained in:
2025-09-12 14:44:50 +02:00
commit 036bec164c
68 changed files with 9681 additions and 0 deletions

View File

@@ -0,0 +1 @@
export { Layout as default } from '@/components/Layout'

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

@@ -0,0 +1,24 @@
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 { UseCases } from '@/components/UseCases'
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
import { Benefits } from '@/components/Benefits'
import { About } from '@/components/About'
export default function Home() {
return (
<>
<Hero />
<About />
<Benefits />
<PrimaryFeatures />
<UseCases />
<CallToAction />
<SecondaryFeatures />
<Faqs />
</>
)
}