2024-07-21 04:19:02 +00:00
|
|
|
import { Box, Center, Flex, Heading } from '@chakra-ui/react';
|
2024-07-16 09:11:03 +00:00
|
|
|
import { Logo } from './Logo';
|
|
|
|
|
|
|
|
export const Branding = () => {
|
|
|
|
return (
|
2024-07-21 04:19:02 +00:00
|
|
|
<Flex pt={[25, 50]} flexDir="column" w="100%" minH="100vh" px={'18px'} maxW={'container'} textAlign={'left'}>
|
2024-07-16 09:11:03 +00:00
|
|
|
<Heading>Branding</Heading>
|
2024-07-21 04:19:02 +00:00
|
|
|
<Heading mt={12}>Logo</Heading>
|
|
|
|
<Logo editable width="300" />
|
|
|
|
</Flex>
|
2024-07-16 09:11:03 +00:00
|
|
|
);
|
|
|
|
};
|