diff --git a/README.md b/README.md index 6f64f90..0b6742f 100644 --- a/README.md +++ b/README.md @@ -131,11 +131,8 @@ Tailwind CSS 4 uses a new CSS-first configuration approach: ## Available Tools -- **Convert** - Modern browser-based file converter powered by WebAssembly (videos, images, audio) - **Pastel** - Modern color manipulation toolkit with palette generation and accessibility testing -- **Audio** - Professional browser-based audio editor with multi-track editing, effects, and analysis (WAV, MP3, OGG, FLAC export) - **Units** - Smart unit converter with 187 units across 23 categories (length, mass, temperature, etc.) -- **Paint** - Modern browser-based image editor with multi-layer canvas, drawing tools, and 50+ filters (inspired by miniPaint) - **Figlet** - ASCII art text generator with 373 fonts (text banners, terminal art, retro designs) ## CI/CD Pipeline diff --git a/app/globals.css b/app/globals.css index 49a07df..e44d7df 100644 --- a/app/globals.css +++ b/app/globals.css @@ -87,18 +87,6 @@ body { background: linear-gradient(135deg, #2dd4bf 0%, #8b5cf6 100%); } -@utility gradient-orange-pink { - background: linear-gradient(135deg, #f97316 0%, #ec4899 100%); -} - -@utility gradient-pink-rose { - background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); -} - -@utility gradient-green-teal { - background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%); -} - @utility gradient-indigo-purple { background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); } diff --git a/components/ToolsGrid.tsx b/components/ToolsGrid.tsx index 9873513..da50e81 100644 --- a/components/ToolsGrid.tsx +++ b/components/ToolsGrid.tsx @@ -4,19 +4,6 @@ import { motion } from 'framer-motion'; import ToolCard from './ToolCard'; const tools = [ - { - title: 'Convert', - description: 'Modern browser-based file converter powered by WebAssembly. Convert videos, images, and audio locally without server uploads. Privacy-first with no file size limits.', - url: 'https://convert.kit.pivoine.art', - gradient: 'gradient-green-teal', - accentColor: '#10b981', - badges: ['Open Source', 'Converter', 'Free'], - icon: ( - - - - ), - }, { title: 'Pastel', description: 'Modern color manipulation toolkit with palette generation, accessibility testing, and format conversion. Supports hex, RGB, HSL, Lab, and more.', @@ -34,19 +21,6 @@ const tools = [ ), }, - { - title: 'Audio', - description: 'Professional browser-based audio editor with multi-track editing, advanced effects, and real-time analysis. Record, edit, and export to WAV, MP3, OGG, or FLAC entirely in your browser.', - url: 'https://audio.kit.pivoine.art', - gradient: 'gradient-orange-pink', - accentColor: '#f97316', - badges: ['Open Source', 'Audio Editor', 'Free'], - icon: ( - - - - ), - }, { title: 'Units', description: 'Smart unit converter with 187 units across 23 categories. Real-time bidirectional conversion with fuzzy search and conversion history.', @@ -60,20 +34,6 @@ const tools = [ ), }, - { - title: 'Paint', - description: 'Modern browser-based image editor with multi-layer canvas, drawing tools, and 50+ filters. Inspired by miniPaint, built for the modern web with full editing capabilities.', - url: 'https://paint.kit.pivoine.art', - gradient: 'gradient-pink-rose', - accentColor: '#ec4899', - badges: ['Open Source', 'Image Editor', 'Free'], - icon: ( - - - - - ), - }, { title: 'Figlet', description: 'ASCII art text generator with 373 fonts. Create stunning text banners, terminal art, and retro designs with live preview and multiple export formats.',