Improve ObjectEditor and Add TableEditor

This commit is contained in:
dwindown
2025-09-23 14:17:13 +07:00
parent cf750114f7
commit 977e784df2
15 changed files with 5329 additions and 345 deletions

View File

@@ -1,5 +1,5 @@
import React, { useState } from 'react';
import { Search, Code, Link2, FileText, Hash, RefreshCw, GitCompare, Type, Edit3 } from 'lucide-react';
import { Search, Code, Link2, FileText, Hash, RefreshCw, GitCompare, Type, Edit3, Table } from 'lucide-react';
import ToolCard from '../components/ToolCard';
const Home = () => {
@@ -14,6 +14,13 @@ const Home = () => {
path: '/object-editor',
tags: ['Visual', 'JSON', 'PHP', 'Objects', 'Editor']
},
{
icon: Table,
title: 'Table Editor',
description: 'Import, edit, and export tabular data from URLs, files, or paste CSV/JSON',
path: '/table-editor',
tags: ['Table', 'CSV', 'JSON', 'Data', 'Editor']
},
{
icon: Link2,
title: 'URL Encoder/Decoder',
@@ -28,13 +35,6 @@ const Home = () => {
path: '/base64',
tags: ['Base64', 'Encode', 'Binary']
},
{
icon: RefreshCw,
title: 'CSV ↔ JSON Converter',
description: 'Convert between CSV and JSON formats with custom delimiters',
path: '/csv-json',
tags: ['CSV', 'JSON', 'Convert']
},
{
icon: FileText,
title: 'Code Beautifier/Minifier',