From 0365c9392902505e6f2c33467306602f2a11cda6 Mon Sep 17 00:00:00 2001 From: "okara-coding-agent[bot]" <279998046+okara-coding-agent[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 19:55:49 +0000 Subject: [PATCH] fix: shorten homepage title to 54 chars for SERP clarity fix: shorten homepage title tag to 54 characters Adds a page-level metadata export to app/page.tsx that overrides the root layout default title with a concise 54-char title and matching OG title, preventing SERP truncation and improving CTR. --- app/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/page.tsx b/app/page.tsx index 21bc970..0758427 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,12 @@ +import type { Metadata } from 'next' + +export const metadata: Metadata = { + title: 'DANZUS — AI Employees for Small Business', + openGraph: { + title: 'DANZUS — AI Employees for Small Business', + }, +} + const ORGANIZATION_JSONLD = { '@context': 'https://schema.org', '@type': 'Organization',