This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / app / (auth) / signup / layout.tsx
465 B 22 lines
1import { Center, Container } from '@mantine/core'; 2import { Metadata } from 'next'; 3 4export const metadata: Metadata = { 5 title: 'Sign up — Semble', 6 description: 'Sign up to get started', 7 robots: { index: false, follow: true }, 8}; 9 10interface Props { 11 children: React.ReactNode; 12} 13 14export default function Layout(props: Props) { 15 return ( 16 <Container> 17 <Center h={'100svh'} p={'sm'}> 18 {props.children} 19 </Center> 20 </Container> 21 ); 22}