From e112cd35a5a6bf0cc6ef7defec9bad46dfa2bc6f Mon Sep 17 00:00:00 2001 From: biwasbhandari Date: Thu, 6 Nov 2025 11:15:16 +0545 Subject: [PATCH] chore(metadata): Hardcode metadata titles to 'AIBTC' Hardcode the page title, OpenGraph title, and Twitter title to 'AIBTC' instead of using the dynamic DAO name. --- src/app/aidaos/[name]/layout.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/aidaos/[name]/layout.tsx b/src/app/aidaos/[name]/layout.tsx index c1ad17ad..2206fb58 100644 --- a/src/app/aidaos/[name]/layout.tsx +++ b/src/app/aidaos/[name]/layout.tsx @@ -46,10 +46,11 @@ export async function generateMetadata({ const seoDescription = extractMission(dao.description); return { - title: dao.name, + // title: dao.name, + title: "AIBTC", description: seoDescription, openGraph: { - title: dao.name, + title: "AIBTC", description: seoDescription, images: ogImageUrl ? [ @@ -65,7 +66,7 @@ export async function generateMetadata({ }, twitter: { card: "summary_large_image", - title: dao.name, + title: "AIBTC", description: seoDescription, // Twitter specific image with 2:1 ratio images: twitterImageUrl ? [twitterImageUrl] : undefined,