2024-07-16 09:11:03 +00:00
|
|
|
import { Box, Heading } from '@chakra-ui/react';
|
|
|
|
import { Logo } from './Logo';
|
|
|
|
|
|
|
|
export const Branding = () => {
|
|
|
|
return (
|
|
|
|
<Box w="100%" px={'18px'} maxW={'container'} textAlign={'left'}>
|
|
|
|
<Heading>Branding</Heading>
|
2024-07-21 02:51:00 +00:00
|
|
|
ello
|
2024-07-16 09:11:03 +00:00
|
|
|
<Logo />
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|