26 lines
573 B
TypeScript
Raw Normal View History

import { Box, Flex } from "@chakra-ui/react"
2023-06-28 01:12:17 +00:00
import { Footer } from "../Nav/Footer"
import { Nav } from "../Nav/Nav"
import { ProfileDrawer } from "../Nav/ProfileDrawer"
export const Main = (props) => {
2023-06-28 01:12:17 +00:00
return (
<Flex
position="relative"
alignItems="center"
justifyContent="center"
flexDirection="column"
overflow="hidden"
maxWidth="100vw"
>
{/* <ProfileDrawer></ProfileDrawer> */}
2023-06-28 01:12:17 +00:00
<Nav />
<Box width="100%" minHeight="100vh">
{props.children}
</Box>
<Footer></Footer>
2023-06-28 01:12:17 +00:00
</Flex>
)
}