Improve ObjectEditor and Add TableEditor
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user