mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
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,
|
|
};
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|