feat: implement text diff tool

This commit is contained in:
2024-05-14 22:35:27 +02:00
parent 91fe326261
commit 9582eab403
4 changed files with 47 additions and 19 deletions

View File

@@ -1,10 +1,11 @@
import { PropsWithChildren } from "react";
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,
title: toolGroups.text.tools.diff.longTitle,
description: toolGroups.text.tools.diff.description,
robots: {
googleBot: {
index: true,
@@ -12,6 +13,6 @@ export const metadata: Metadata = {
},
};
export default function Layout({ children }: { children: React.ReactNode }) {
export default function Layout({ children }: PropsWithChildren) {
return children;
}