mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { Metadata } from "next";
|
|
|
|
// TODO: use query param
|
|
export const metadata: Metadata = {
|
|
title: "Search results",
|
|
robots: {
|
|
googleBot: {
|
|
index: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default function Layout({ children }: PropsWithChildren) {
|
|
return children;
|
|
}
|