mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
18 lines
429 B
TypeScript
18 lines
429 B
TypeScript
import { Metadata } from "next";
|
|
|
|
import { toolGroups } from "@/config/tools";
|
|
|
|
export const metadata: Metadata = {
|
|
title: toolGroups.text.tools.inspector_and_case_converter.longTitle,
|
|
description: toolGroups.text.tools.inspector_and_case_converter.description,
|
|
robots: {
|
|
googleBot: {
|
|
index: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|