Files
DevToysWeb/app/text/layout.tsx

17 lines
318 B
TypeScript

import { Metadata } from "next";
import { toolGroups } from "@/config/tools";
export const metadata: Metadata = {
title: toolGroups.generators.title,
robots: {
googleBot: {
index: false,
},
},
};
export default function Layout({ children }: { children: React.ReactNode }) {
return children;
}