From d0d646e5a09f9abe9336d5a12900ff7bc206af13 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?=
Date: Sat, 8 Nov 2025 17:35:56 +0100
Subject: [PATCH] feat: add Draw (Excalidraw) tool as 6th tool
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- Added Draw tool to ToolsGrid with collaborative badges
- Updated Stats component to show 6 tools
- Updated Footer to show 6 tools and include Draw link
- Updated README with Draw tool description
- Draw tool accessible at draw.kit.pivoine.art
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude
---
README.md | 1 +
components/Footer.tsx | 3 ++-
components/Stats.tsx | 2 +-
components/ToolsGrid.tsx | 12 ++++++++++++
4 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 5bae559..97a3d58 100644
--- a/README.md
+++ b/README.md
@@ -136,6 +136,7 @@ Tailwind CSS 4 uses a new CSS-first configuration approach:
- **Pastel** - Modern color manipulation toolkit with palette generation and accessibility testing
- **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.)
+- **Draw** - Virtual whiteboard for sketching hand-drawn style diagrams (flowcharts, wireframes, collaborative editing)
## CI/CD Pipeline
diff --git a/components/Footer.tsx b/components/Footer.tsx
index f87c39f..795862f 100644
--- a/components/Footer.tsx
+++ b/components/Footer.tsx
@@ -24,7 +24,7 @@ export default function Footer() {
Your Creative Toolkit
- 5 Tools
+ 6 Tools
•
Open Source
@@ -65,6 +65,7 @@ export default function Footer() {
Pastel
Stirling
Units
+ Draw
diff --git a/components/Stats.tsx b/components/Stats.tsx
index d1268b7..310ae83 100644
--- a/components/Stats.tsx
+++ b/components/Stats.tsx
@@ -4,7 +4,7 @@ import { motion } from 'framer-motion';
const stats = [
{
- number: '5',
+ number: '6',
label: 'Tools',
icon: (
),
},
+ {
+ title: 'Draw',
+ description: 'Virtual whiteboard for sketching hand-drawn style diagrams. Create flowcharts, wireframes, and visual brainstorming with collaborative editing.',
+ url: 'https://draw.kit.pivoine.art',
+ gradient: 'gradient-orange-pink',
+ badges: ['Collaborative', 'Open Source', 'Free'],
+ icon: (
+
+ ),
+ },
];
export default function ToolsGrid() {