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) / logout / layout.tsx
275 B 14 lines
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}