fix: change homepage title

This commit is contained in:
swve 2023-05-22 18:20:04 +00:00
parent 9249aeafad
commit 2c0e4dc902

View file

@ -24,7 +24,7 @@ export async function generateMetadata(
// Get Org context information // Get Org context information
const org = await getOrganizationContextInfo(params.orgslug, { revalidate: 1800, tags: ['organizations'] }); const org = await getOrganizationContextInfo(params.orgslug, { revalidate: 1800, tags: ['organizations'] });
return { return {
title: org.name + " — Home", title: `Home — ${org.name}`,
description: org.description, description: org.description,
}; };
} }