diff --git a/app/layout.tsx b/app/layout.tsx index 40a58dd..d377c49 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -50,6 +50,10 @@ export const metadata: Metadata = { ], apple: "/apple-touch-icon.png?v=sf1", }, + robots: { + index: false, + follow: false, + }, }; export default function RootLayout({ diff --git a/app/robots.ts b/app/robots.ts new file mode 100644 index 0000000..d35686e --- /dev/null +++ b/app/robots.ts @@ -0,0 +1,10 @@ +import type { MetadataRoute } from "next"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: "*", + disallow: "/", + }, + }; +}