chore: set index to each page

This commit is contained in:
rusconn
2024-04-04 11:32:46 +09:00
parent 3a68bc9c82
commit 90ba9f4f8e
16 changed files with 80 additions and 0 deletions

View File

@@ -3,6 +3,11 @@ import { Metadata } from "next";
// TODO: use query param
export const metadata: Metadata = {
title: "Search results",
robots: {
googleBot: {
index: false,
},
},
};
export default function Layout({ children }: { children: React.ReactNode }) {