This commit is contained in:
2024-09-10 14:46:49 +02:00
parent f484975397
commit df0abb99ab
563 changed files with 19624 additions and 664 deletions

View File

@@ -1,6 +1,6 @@
import { Homepage } from '@/components/Homepage'
import { Hero } from '@/components/Hero'
import Community from '@/components/Community'
import Events from '@/components/Events'
import Communicate from '@/components/Communicate'
import Collaborate from '@/components/Collaborate'
import Build from '@/components/Build'
@@ -18,7 +18,7 @@ export default function Home() {
<Collaborate />
<Build />
<Product />
<Community />
<Events />
</>
)
}

View File

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

View File

@@ -0,0 +1,15 @@
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'
export default function community() {
return (
<>
<Communhero />
<Commevents />
<Events />
</>
)
}

View File

@@ -1,5 +1,4 @@
import { Event1 } from '@/components/Event1'
import { Header } from '@/components/Header'
import { Newsletter } from '@/components/Newsletter'
import { Schedule } from '@/components/Schedule'
import { Speakers } from '@/components/Speakers'
@@ -11,7 +10,6 @@ import FAQ from '@/components/FAQ'
export default function versefest() {
return (
<>
<Header />
<Event1 />
<Sponsors />
<Venue />

View File

@@ -6,7 +6,6 @@ import FAQ from '@/components/FAQ'
export default function usecases() {
return (
<>
<Banner />
<Usecases />
<Casestudies />
<FAQ />