mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import { Metadata } from "next";
|
|
|
|
import { toolGroups } from "@/config/tools";
|
|
|
|
export const metadata: Metadata = {
|
|
title: toolGroups.generators.tools.hash.longTitle,
|
|
description: toolGroups.generators.tools.hash.description,
|
|
};
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|