import { Box, VStack, HStack } from '../elements/LayoutPrimitives'
import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo'
import { theme } from '../tokens/stitches.config'
type ProfileLayoutProps = {
logoDestination?: string
children: React.ReactNode
}
export function ProfileLayout(props: ProfileLayoutProps): JSX.Element {
return (
<>
{props.children}
>
)
}