16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
import FeaturesSection from './FeaturesSection'
|
|
import HeroSection from './HeroSection'
|
|
import OneMoreThingSection from './OneMoreThingSection'
|
|
import ScenariosSection from './ScenariosSection'
|
|
|
|
export default function HomeContent() {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
<FeaturesSection />
|
|
<ScenariosSection />
|
|
<OneMoreThingSection />
|
|
</>
|
|
)
|
|
}
|