From 4a143b069c48edaddfd0010bc72b6984114ba566 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 15 Apr 2024 11:03:34 +0800 Subject: [PATCH] Add missing file --- .../web/components/templates/AuthLayout.tsx | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 packages/web/components/templates/AuthLayout.tsx diff --git a/packages/web/components/templates/AuthLayout.tsx b/packages/web/components/templates/AuthLayout.tsx new file mode 100644 index 000000000..48197b6d4 --- /dev/null +++ b/packages/web/components/templates/AuthLayout.tsx @@ -0,0 +1,56 @@ +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} + + + + + + + + + ) +}