add about page

This commit is contained in:
2024-10-04 16:22:32 +02:00
parent dfbc3a771f
commit b10eaec8de
113 changed files with 480 additions and 198 deletions

View File

@@ -18,8 +18,6 @@ export default function Home() {
<HeroFeature />
<BentoSection />
<Eventbanner />
<CTA />
</>
)
}

5
src/app/about/layout.jsx Normal file
View 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
View 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 />
</>
)
}