From b892798aad53760a5a94df344a8657670893f98b Mon Sep 17 00:00:00 2001 From: Eason WaveKat Date: Mon, 30 Mar 2026 19:13:34 +1300 Subject: [PATCH] fix: improve OG title and description for social sharing Title was 7 chars ("WaveKat"), now 56 chars (optimal 50-60). Description was 49 chars, now 160 chars (optimal 110-160). Co-Authored-By: Claude Opus 4.6 (1M context) --- src/layouts/Base.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index d805dad..e87ce8a 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -8,8 +8,8 @@ interface Props { } const { - title = 'WaveKat', - description = 'Give every small business the voice of a big one.', + title = 'WaveKat — Open-Source AI Voice Tools for Small Business', + description = 'WaveKat builds open-source, AI-powered tools that give small businesses enterprise-grade voice capabilities — phone answering, conversations, and 24/7 presence.', ogImage = '/og.png', } = Astro.props;