Fortura/apps/www/app/examples/layout.tsx
2025-08-20 04:12:49 -06:00

10 lines
208 B
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
robots: 'noindex,nofollow',
};
export default function Layout({ children }: { children: React.ReactNode }) {
return children;
}