From 11e2baba6a80fa573b210811529aad3ef0c0dea1 Mon Sep 17 00:00:00 2001 From: Yahia Bakour Date: Tue, 28 Jul 2026 02:17:42 -0700 Subject: [PATCH] chore: block search indexing --- src/app/layout.tsx | 4 ++++ src/app/robots.ts | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/app/robots.ts 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: "/", + }, + }; +}