edit
This commit is contained in:
@@ -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 />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
0
src/app/community/page.jsx
Normal file
0
src/app/community/page.jsx
Normal file
5
src/app/usecases/layout.jsx
Normal file
5
src/app/usecases/layout.jsx
Normal 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
11
src/app/usecases/page.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import Usecases from '@/components/Usecases'
|
||||
import Banner from '@/components/Banner'
|
||||
|
||||
export default function usecases() {
|
||||
return (
|
||||
<>
|
||||
<Banner />
|
||||
<Usecases />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user