diff --git a/packages/web/components/templates/OnboardingLayout.tsx b/packages/web/components/templates/ProfileLayout.tsx similarity index 91% rename from packages/web/components/templates/OnboardingLayout.tsx rename to packages/web/components/templates/ProfileLayout.tsx index 8112bda34..3e89faa5f 100644 --- a/packages/web/components/templates/OnboardingLayout.tsx +++ b/packages/web/components/templates/ProfileLayout.tsx @@ -2,11 +2,11 @@ import { Box, VStack, HStack } from '../elements/LayoutPrimitives' import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo' import { theme } from '../tokens/stitches.config' -type OnboardingLayoutProps = { +type ProfileLayoutProps = { children: React.ReactNode } -export function OnboardingLayout(props: OnboardingLayoutProps): JSX.Element { +export function ProfileLayout(props: ProfileLayoutProps): JSX.Element { return ( <> - + - +
)