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

@@ -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 />
</>
)
}