This commit is contained in:
2023-06-14 22:15:39 +04:00
parent 2fbdc4cd44
commit a4bed55547
3 changed files with 74 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
import Header from '~/app/components/header'
import Footer from '~/app/components/footer'
import { Providers } from '~/app/providers'
import { Container } from '~/app/ui'
import directus from '~/lib/directus'
@@ -26,6 +27,7 @@ export default async function RootLayout({ children }) {
<Container maxW="3xl">
<Header siteName={globals.site_name} />
{children}
<Footer />
</Container>
</Providers>
</body>