add new component

This commit is contained in:
2024-09-24 19:17:07 +02:00
parent 05277a28c2
commit 76601e5c71
95 changed files with 1798 additions and 176 deletions

View File

@@ -2,9 +2,8 @@ import { Homepage } from '@/components/Homepage'
import { Hero } from '@/components/Hero'
import Events from '@/components/Events'
import { Product } from '@/components/Product'
import Allfeatures from '@/components/Allfeatures'
import Featureshome from '@/components/Featureshome'
import { Sponsors } from '@/components/Sponsors'
import BentoSection from '@/components/Bentosection'
export default function Home() {
return (
@@ -12,7 +11,7 @@ export default function Home() {
<Homepage />
<Sponsors />
<Hero />
<Featureshome />
<BentoSection />
<Product />
<Events />
</>

View File

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

19
src/app/events/page.jsx Normal file
View File

@@ -0,0 +1,19 @@
import Usecases from '@/components/Usecases'
import Banner from '@/components/Banner'
import Communhero from '@/components/Communhero'
import Commevents from '@/components/Commevents'
import Events from '@/components/Events'
import Socials from '@/components/Socials'
import Blogposts from '@/components/Blogposts'
export default function events() {
return (
<>
<Communhero />
<Socials />
<Events />
<Blogposts />
</>
)
}