Files

19 lines
434 B
TypeScript

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