add about page
This commit is contained in:
@@ -18,8 +18,6 @@ export default function Home() {
|
||||
<HeroFeature />
|
||||
<BentoSection />
|
||||
<Eventbanner />
|
||||
<CTA />
|
||||
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
5
src/app/about/layout.jsx
Normal file
5
src/app/about/layout.jsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Layout } from '@/components/Layout'
|
||||
|
||||
export default function FeaturesLayout({ children }) {
|
||||
return <Layout>{children}</Layout>
|
||||
}
|
18
src/app/about/page.jsx
Normal file
18
src/app/about/page.jsx
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
import Abouthero from '@/components/Abouthero'
|
||||
import Aboutco from '@/components/Aboutco'
|
||||
import Aboutvalues from '@/components/Aboutvalues'
|
||||
import CTA from '@/components/Cta'
|
||||
import Aboutnodes from '@/components/Aboutnodes'
|
||||
|
||||
export default function about() {
|
||||
return (
|
||||
<>
|
||||
<Abouthero />
|
||||
<CTA />
|
||||
<Aboutco />
|
||||
<Aboutvalues />
|
||||
<Aboutnodes />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user