forked from sashaastiadi/www_mycelium_net
22 lines
604 B
TypeScript
22 lines
604 B
TypeScript
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'
|
|
import { Benefits } from '@/components/Benefits'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<PrimaryFeatures />
|
|
<Reviews />
|
|
<CallToAction />
|
|
<SecondaryFeatures />
|
|
<Faqs />
|
|
</>
|
|
)
|
|
}
|