This commit is contained in:
2024-09-09 15:55:54 +02:00
parent 4be4914a09
commit 000bc25b7c
7 changed files with 42 additions and 3 deletions

View File

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

View File

View File

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

11
src/app/usecases/page.jsx Normal file
View File

@@ -0,0 +1,11 @@
import Usecases from '@/components/Usecases'
import Banner from '@/components/Banner'
export default function usecases() {
return (
<>
<Banner />
<Usecases />
</>
)
}