renamed layt

This commit is contained in:
2024-09-23 13:49:43 +02:00
parent e7690870b5
commit de64f88f21
32 changed files with 44 additions and 16 deletions

View File

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

View File

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

View File

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