Rename frontend to legacy-frontend

This commit is contained in:
2026-04-23 21:03:23 +04:00
parent a3ec5b78c6
commit 63ac2df4b5
21 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Container, Box } from '@chakra-ui/react'
import Footer from '~/components/footer'
import Header from '~/components/header'
export default function Layout({ globals, menus, children }) {
return (
<Container maxW={'8xl'}>
<Header menu={menus.find((m) => m.id === 'MAIN_MENU')} globals={globals} />
<Box marginY="6">{children}</Box>
<Footer menu={menus.find((m) => m.id === 'FOOTER_MENU')} globals={globals} />
</Container>
)
}