2025-07-23 12:03:06 -07:00
|
|
|
import { Box, Text } from '@chakra-ui/react';
|
|
|
|
|
|
|
|
|
|
export default function AdminCanvas() {
|
2025-07-24 08:52:20 -07:00
|
|
|
return (
|
|
|
|
|
<Box p={8} mt={4} ml="auto" mr="auto" width="600px">
|
|
|
|
|
<Box
|
|
|
|
|
bg="bg"
|
|
|
|
|
shadow="md"
|
|
|
|
|
borderRadius="md"
|
|
|
|
|
p={8}
|
|
|
|
|
width="600px"
|
|
|
|
|
height="100px"
|
|
|
|
|
textAlign="center"
|
|
|
|
|
display="flex"
|
|
|
|
|
alignItems="center"
|
|
|
|
|
justifyContent="center"
|
|
|
|
|
>
|
|
|
|
|
<Text fontsize="2xl" fontWeight="bold" color="gray.700">
|
|
|
|
|
Admin Canvas coming soon!
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
2025-07-23 12:03:06 -07:00
|
|
|
}
|