diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8919194..b0056dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,10 @@ export const metadata: Metadata = { title: "Branda | Context.dev", description: "Create on-brand ads in seconds. Powered by the Context.dev Brand API.", icons: { icon: "/favicon.ico" }, + robots: { + index: false, + follow: false, + }, }; export default function RootLayout({ children }: { children: React.ReactNode }) { diff --git a/src/app/robots.ts b/src/app/robots.ts new file mode 100644 index 0000000..d35686e --- /dev/null +++ b/src/app/robots.ts @@ -0,0 +1,10 @@ +import type { MetadataRoute } from "next"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: "*", + disallow: "/", + }, + }; +}