about
This commit is contained in:
5
src/app/heroverse/layout.jsx
Normal file
5
src/app/heroverse/layout.jsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Layout } from '@/components/Layout'
|
||||
|
||||
export default function FeaturesLayout({ children }) {
|
||||
return <Layout>{children}</Layout>
|
||||
}
|
13
src/app/heroverse/page.jsx
Normal file
13
src/app/heroverse/page.jsx
Normal 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 />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user