fix(seo): shorten the meta description for mobile search results

The 131 character description overflowed the three line snippet Google renders
on mobile. The replacement is 114 characters and keeps the same claims.
This commit is contained in:
Amruth Pillai
2026-08-17 22:19:52 +02:00
parent 1e23a453a0
commit d0fa9ae8da
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -43,8 +43,9 @@ type RouterContext = {
const appName = "Reactive Resume";
const tagline = "A free and open-source resume builder";
const title = `${appName}${tagline}`;
// Keep under ~120 characters so Google's mobile SERP snippet is not truncated at 3 lines.
const description =
"Reactive Resume is a free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.";
"Free, open-source resume builder. Create, update, and share a professional resume in minutes — no ads, no paywall.";
const iconContextValue: IconProps = { size: 16, weight: "regular" };
export const Route = createRootRouteWithContext<RouterContext>()({