diff --git a/README.md b/README.md
index f7e671d..8ea0434 100644
--- a/README.md
+++ b/README.md
@@ -134,6 +134,7 @@ Tailwind CSS 4 uses a new CSS-first configuration approach:
- **Vert** - Privacy-focused file converter (images, audio, documents)
- **Paint** - Browser-based image editor
- **Pastel** - Modern color manipulation toolkit with palette generation and accessibility testing
+- **Stirling** - Powerful PDF toolkit with 50+ operations (merge, split, convert, OCR, sign)
## CI/CD Pipeline
diff --git a/components/Footer.tsx b/components/Footer.tsx
index 2d2d967..5c3217b 100644
--- a/components/Footer.tsx
+++ b/components/Footer.tsx
@@ -24,7 +24,7 @@ export default function Footer() {
Your Creative Toolkit
- 3 Tools
+ 4 Tools
•
Open Source
@@ -63,6 +63,7 @@ export default function Footer() {
Vert
Paint
Pastel
+ Stirling
diff --git a/components/Stats.tsx b/components/Stats.tsx
index ef8a616..b02d2bc 100644
--- a/components/Stats.tsx
+++ b/components/Stats.tsx
@@ -4,7 +4,7 @@ import { motion } from 'framer-motion';
const stats = [
{
- number: '3',
+ number: '4',
label: 'Tools',
icon: (
),
},
+ {
+ title: 'Stirling',
+ description: 'Powerful locally-hosted PDF toolkit with 50+ operations. Merge, split, convert, OCR, sign, and manipulate PDFs with complete privacy.',
+ url: 'https://stirling.kit.pivoine.art',
+ gradient: 'gradient-purple-blue',
+ badges: ['Privacy', 'Open Source', 'Free'],
+ icon: (
+
+ ),
+ },
];
export default function ToolsGrid() {