Files
DevToysWeb/app/converters/layout.tsx

18 lines
349 B
TypeScript

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