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