feat: implement text inspector and case converter tool (#3)

This commit is contained in:
2024-10-24 13:48:07 +02:00
committed by GitHub
parent f053bd40eb
commit 2ab69ecc9f
13 changed files with 471 additions and 47 deletions

11
app/text/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { toolGroups } from "@/config/tools";
import { PageRootSection } from "@/components/page-root-section";
import { ToolCards } from "@/components/tool-cards";
export default function Page() {
return (
<PageRootSection title={toolGroups.text.title}>
<ToolCards tools={Object.values(toolGroups.text.tools)} />
</PageRootSection>
);
}