feat: implement text diff tool

This commit is contained in:
2024-05-14 22:26:00 +02:00
parent 5113fe626b
commit 91fe326261
10 changed files with 259 additions and 36 deletions

17
app/text/diff/layout.tsx Normal file
View 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;
}