diff --git a/app/routes/j/$id.tsx b/app/routes/j/$id.tsx index 2843df4..b0d91f3 100644 --- a/app/routes/j/$id.tsx +++ b/app/routes/j/$id.tsx @@ -88,10 +88,11 @@ export const meta: MetaFunction = ({ data: LoaderData | undefined; }) => { if (!data) { - return { title: "JSON Hero" }; + return { title: "JSON Hero", robots: "noindex,nofollow" }; } return { title: `JSON Hero - ${data.doc.title}`, + robots: "noindex,nofollow", }; };