feat: implement text inspector and case converter tool

This commit is contained in:
2024-05-14 18:01:20 +02:00
parent 90ba9f4f8e
commit 5113fe626b
13 changed files with 471 additions and 47 deletions

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;
}