ok
This commit is contained in:
1
src/app/(main)/layout.tsx
Normal file
1
src/app/(main)/layout.tsx
Normal file
@@ -0,0 +1 @@
|
||||
export { Layout as default } from '@/components/Layout'
|
24
src/app/(main)/page.tsx
Normal file
24
src/app/(main)/page.tsx
Normal 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 />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user