forked from ourworld_web/www_engage_os
first
This commit is contained in:
21
src/app/(main)/page.tsx
Normal file
21
src/app/(main)/page.tsx
Normal 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 />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user