Files
DevToysWeb/app/text/page.tsx

12 lines
356 B
TypeScript

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