Files
DevToysWeb/app/generators/uuid/layout.tsx
2024-04-04 11:47:24 +09:00

18 lines
393 B
TypeScript

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