1import { Metadata } from 'next';
2
3export const metadata: Metadata = {
4 title: 'Logging out — Semble',
5 robots: { index: false, follow: true },
6};
7
8interface Props {
9 children: React.ReactNode;
10}
11
12export default function Layout(props: Props) {
13 return props.children;
14}