mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2026-01-05 20:52:08 +00:00
feat: implement text diff tool
This commit is contained in:
17
app/text/diff/layout.tsx
Normal file
17
app/text/diff/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user