From b11ce5552ffce25c67cd4f004b0f5f73dde6c223 Mon Sep 17 00:00:00 2001 From: Mohd Kaif Ansari <155880242+techykaif@users.noreply.github.com> Date: Fri, 21 Aug 2026 23:41:55 +0530 Subject: [PATCH] fix(seo): correct city library pluralization --- src/app/city/[slug]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/city/[slug]/page.tsx b/src/app/city/[slug]/page.tsx index e768587..f9c9b57 100644 --- a/src/app/city/[slug]/page.tsx +++ b/src/app/city/[slug]/page.tsx @@ -37,7 +37,7 @@ export async function generateMetadata({ const name = humanizeCity(page.city); return { title: `${name} — student places`, - description: `Student-important places in ${name}: ${page.places.length} exam centre${page.places.length === 1 ? "" : "s"}, library${page.places.length === 1 ? "" : "ies"} and more, on the crowdsourced StudyMap.`, + description: `Student-important places in ${name}: ${page.places.length} exam centre${page.places.length === 1 ? "" : "s"}, ${page.places.length === 1 ? "library" : "libraries"} and more, on the crowdsourced StudyMap.`, }; }