feat: implement programmatic SEO routes and optimize meta tags

This commit is contained in:
mstfyldz
2026-05-30 22:02:55 +03:00
parent fa9e3edcd8
commit 7872e8862d
16 changed files with 947 additions and 629 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ export async function generateMetadata({ params }: { params: Promise<{ lang: Loc
const { lang } = await params;
const dict = await getDictionary(lang);
return {
title: `${dict.services.title} | ${dict.nav.brandName}${dict.nav.brandSub}`,
description: dict.services.desc,
title: dict.meta.services.title,
description: dict.meta.services.desc,
};
}