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