mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-18 04:59:23 +00:00
16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
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 }) {
|
|
return children;
|
|
}
|