feat: update-layout & add uuid tool (#4)

Co-authored-by: typist <git@mail.typist.cc>
Reviewed-on: #4
This commit is contained in:
2025-10-28 00:55:42 +08:00
parent 0c54293312
commit 24594deecc
8 changed files with 107 additions and 37 deletions

View File

@@ -1,8 +1,14 @@
interface Tool {
name: string;
description: string;
icon: React.ReactNode;
component: React.ReactNode;
}
import { Hash } from 'lucide-react'
export const tools: Tool[] = [];
import type { Tool } from "./type";
import { UUID } from './uuid'
export const tools: Tool[] = [
{
path: "uuid",
name: "UUID Generator",
description: "Generate a UUID",
icon: <Hash />,
component: <UUID />,
}
];