From c9c7d22766d179976b8980fd385f8e598d46cd88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 28 Feb 2026 10:34:42 +0100 Subject: [PATCH] seo: add meta description (tool.summary) to all tool pages Co-Authored-By: Claude Sonnet 4.6 --- app/(app)/ascii/page.tsx | 2 +- app/(app)/color/page.tsx | 2 +- app/(app)/favicon/page.tsx | 2 +- app/(app)/media/page.tsx | 2 +- app/(app)/qrcode/page.tsx | 2 +- app/(app)/units/page.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/(app)/ascii/page.tsx b/app/(app)/ascii/page.tsx index c84c98b..53d7c82 100644 --- a/app/(app)/ascii/page.tsx +++ b/app/(app)/ascii/page.tsx @@ -5,7 +5,7 @@ import { getToolByHref } from '@/lib/tools'; const tool = getToolByHref('/ascii')!; -export const metadata: Metadata = { title: tool.title }; +export const metadata: Metadata = { title: tool.title, description: tool.summary }; export default function ASCIIPage() { return ( diff --git a/app/(app)/color/page.tsx b/app/(app)/color/page.tsx index f45cf78..102126a 100644 --- a/app/(app)/color/page.tsx +++ b/app/(app)/color/page.tsx @@ -5,7 +5,7 @@ import { getToolByHref } from '@/lib/tools'; const tool = getToolByHref('/color')!; -export const metadata: Metadata = { title: tool.title }; +export const metadata: Metadata = { title: tool.title, description: tool.summary }; export default function ColorPage() { return ( diff --git a/app/(app)/favicon/page.tsx b/app/(app)/favicon/page.tsx index af7eab9..4500739 100644 --- a/app/(app)/favicon/page.tsx +++ b/app/(app)/favicon/page.tsx @@ -5,7 +5,7 @@ import { getToolByHref } from '@/lib/tools'; const tool = getToolByHref('/favicon')!; -export const metadata: Metadata = { title: tool.title }; +export const metadata: Metadata = { title: tool.title, description: tool.summary }; export default function FaviconPage() { return ( diff --git a/app/(app)/media/page.tsx b/app/(app)/media/page.tsx index b06c6fe..ac2f223 100644 --- a/app/(app)/media/page.tsx +++ b/app/(app)/media/page.tsx @@ -5,7 +5,7 @@ import { getToolByHref } from '@/lib/tools'; const tool = getToolByHref('/media')!; -export const metadata: Metadata = { title: tool.title }; +export const metadata: Metadata = { title: tool.title, description: tool.summary }; export default function MediaPage() { return ( diff --git a/app/(app)/qrcode/page.tsx b/app/(app)/qrcode/page.tsx index 0bf446d..aa48548 100644 --- a/app/(app)/qrcode/page.tsx +++ b/app/(app)/qrcode/page.tsx @@ -5,7 +5,7 @@ import { getToolByHref } from '@/lib/tools'; const tool = getToolByHref('/qrcode')!; -export const metadata: Metadata = { title: tool.title }; +export const metadata: Metadata = { title: tool.title, description: tool.summary }; export default function QRCodePage() { return ( diff --git a/app/(app)/units/page.tsx b/app/(app)/units/page.tsx index 196d669..8499692 100644 --- a/app/(app)/units/page.tsx +++ b/app/(app)/units/page.tsx @@ -5,7 +5,7 @@ import { getToolByHref } from '@/lib/tools'; const tool = getToolByHref('/units')!; -export const metadata: Metadata = { title: tool.title }; +export const metadata: Metadata = { title: tool.title, description: tool.summary }; export default function UnitsPage() { return (