Skip to content

Commit

Permalink
Remove site name in SEO title
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchernchong committed Dec 7, 2024
1 parent efb0f12 commit bdfc947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(default)/cars/makes/[make]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const generateMetadata = async (props: {
const { make } = params;

const formattedMake = deslugify(make).toUpperCase();
const title = `${formattedMake} Cars Overview: Registration Trends - ${SITE_TITLE}`;
const title = `${formattedMake} Cars Overview: Registration Trends`;
const description = `${formattedMake} cars overview. Historical car registration trends and monthly breakdown by fuel and vehicle types in Singapore.`;
// const images = `/api/og?title=Historical Trend&make=${make}`;
const canonical = `/cars/makes/${make}`;
Expand Down Expand Up @@ -82,7 +82,7 @@ const CarMakePage = async (props: { params: Params }) => {

const formattedMake = deslugify(make).toUpperCase();

const title = `${formattedMake} Cars Overview: Registration Trends - ${SITE_TITLE}`;
const title = `${formattedMake} Cars Overview: Registration Trends`;
const description = `${formattedMake} cars overview. Historical car registration trends and monthly breakdown by fuel and vehicle types in Singapore.`;
const structuredData: WithContext<WebPage> = {
"@context": "https://schema.org",
Expand Down

0 comments on commit bdfc947

Please sign in to comment.