refactor: remove Paint tool from toolkit

- Removed Paint card from ToolsGrid
- Updated Stats from 7 to 6 tools
- Updated Footer badge from 7 to 6 tools
- Removed Paint link from Footer tools column
- Removed Paint from README Available Tools section

Current tools (6):
- Vert (file converter)
- Pastel (color toolkit)
- Stirling (PDF toolkit)
- Units (unit converter)
- Draw (whiteboard)
- Figlet (ASCII art)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-09 15:26:31 +01:00
parent 76e1af8e97
commit 41c77dce9d
4 changed files with 2 additions and 17 deletions

View File

@@ -132,7 +132,6 @@ Tailwind CSS 4 uses a new CSS-first configuration approach:
## Available Tools ## Available Tools
- **Vert** - Privacy-focused file converter (images, audio, documents) - **Vert** - Privacy-focused file converter (images, audio, documents)
- **Paint** - Browser-based image editor
- **Pastel** - Modern color manipulation toolkit with palette generation and accessibility testing - **Pastel** - Modern color manipulation toolkit with palette generation and accessibility testing
- **Stirling** - Powerful PDF toolkit with 50+ operations (merge, split, convert, OCR, sign) - **Stirling** - Powerful PDF toolkit with 50+ operations (merge, split, convert, OCR, sign)
- **Units** - Smart unit converter with 187 units across 23 categories (length, mass, temperature, etc.) - **Units** - Smart unit converter with 187 units across 23 categories (length, mass, temperature, etc.)

View File

@@ -24,7 +24,7 @@ export default function Footer() {
Your Creative Toolkit Your Creative Toolkit
</p> </p>
<div className="mt-4 inline-flex items-center gap-2 px-3 py-1 rounded-full bg-purple-500/10 border border-purple-500/20"> <div className="mt-4 inline-flex items-center gap-2 px-3 py-1 rounded-full bg-purple-500/10 border border-purple-500/20">
<span className="text-xs font-medium text-purple-400">7 Tools</span> <span className="text-xs font-medium text-purple-400">6 Tools</span>
<span className="text-gray-600"></span> <span className="text-gray-600"></span>
<span className="text-xs text-gray-500">Open Source</span> <span className="text-xs text-gray-500">Open Source</span>
</div> </div>
@@ -61,7 +61,6 @@ export default function Footer() {
<h4 className="text-sm font-semibold text-gray-300 mb-4">Tools</h4> <h4 className="text-sm font-semibold text-gray-300 mb-4">Tools</h4>
<div className="flex flex-col gap-2 items-center md:items-end"> <div className="flex flex-col gap-2 items-center md:items-end">
<a href="https://vert.kit.pivoine.art" className="text-gray-400 hover:text-[#10b981] transition-colors text-base">Vert</a> <a href="https://vert.kit.pivoine.art" className="text-gray-400 hover:text-[#10b981] transition-colors text-base">Vert</a>
<a href="https://paint.kit.pivoine.art" className="text-gray-400 hover:text-[#f97316] transition-colors text-base">Paint</a>
<a href="https://pastel.kit.pivoine.art" className="text-gray-400 hover:text-[#a855f7] transition-colors text-base">Pastel</a> <a href="https://pastel.kit.pivoine.art" className="text-gray-400 hover:text-[#a855f7] transition-colors text-base">Pastel</a>
<a href="https://stirling.kit.pivoine.art" className="text-gray-400 hover:text-[#667eea] transition-colors text-base">Stirling</a> <a href="https://stirling.kit.pivoine.art" className="text-gray-400 hover:text-[#667eea] transition-colors text-base">Stirling</a>
<a href="https://units.kit.pivoine.art" className="text-gray-400 hover:text-[#2dd4bf] transition-colors text-base">Units</a> <a href="https://units.kit.pivoine.art" className="text-gray-400 hover:text-[#2dd4bf] transition-colors text-base">Units</a>

View File

@@ -4,7 +4,7 @@ import { motion } from 'framer-motion';
const stats = [ const stats = [
{ {
number: '7', number: '6',
label: 'Tools', label: 'Tools',
icon: ( icon: (
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">

View File

@@ -17,19 +17,6 @@ const tools = [
</svg> </svg>
), ),
}, },
{
title: 'Paint',
description: 'An advanced image editor running in your browser. Edit photos, create graphics, and more.',
url: 'https://paint.kit.pivoine.art',
gradient: 'gradient-orange-pink',
accentColor: '#f97316',
badges: ['Browser-Based', 'Free'],
icon: (
<svg className="w-12 h-12 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01" />
</svg>
),
},
{ {
title: 'Pastel', title: 'Pastel',
description: 'Modern color manipulation toolkit with palette generation, accessibility testing, and format conversion. Supports hex, RGB, HSL, Lab, and more.', description: 'Modern color manipulation toolkit with palette generation, accessibility testing, and format conversion. Supports hex, RGB, HSL, Lab, and more.',