This commit is contained in:
2024-10-07 19:50:42 +02:00
parent bec08efb2c
commit 4b223f37d2
42 changed files with 370 additions and 144 deletions

View File

@@ -0,0 +1,5 @@
import { Layout } from '@/components/Layout'
export default function FeaturesLayout({ children }) {
return <Layout>{children}</Layout>
}

View File

@@ -0,0 +1,13 @@
import { Heropage }from '@/components/Heropage'
import HeroFeature2 from '@/components/HeroFeature2'
import HeroFeature3 from '@/components/HeroFeature3'
export default function heroverse() {
return (
<>
<Heropage />
<HeroFeature2 />
<HeroFeature3 />
</>
)
}