mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
12 lines
356 B
TypeScript
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>
|
|
);
|
|
}
|