feat: add-tool base64 (#7)

Co-authored-by: typist <git@mail.typist.cc>
Reviewed-on: #7
This commit is contained in:
2025-10-28 04:39:39 +08:00
parent da20e34dc9
commit 7cd826b052
3 changed files with 81 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
import type { ReactNode } from 'react';
import { FileJson, Hash } from 'lucide-react'
import { FileJson, Hash, Binary } from 'lucide-react'
import UUID from './uuid'
import JSON from './json'
import Base64 from './base64'
export interface Tool {
path: string;
@@ -26,5 +27,12 @@ export const tools: Tool[] = [
description: "Format and validate JSON",
icon: <FileJson />,
component: <JSON />,
},
{
path: "base64",
name: "Base64 Encoder/Decoder",
description: "Encode and decode Base64",
icon: <Binary />,
component: <Base64 />,
}
];