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() {