Skip to content

Commit

Permalink
Update SEO copy text
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchernchong committed Nov 20, 2024
1 parent 5a8a65f commit 0c5f947
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/cars/fuel-types/[fuelType]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const generateMetadata = async (props: {
}

const title = `${capitaliseWords(fuelType)} Cars in Singapore`;
const description = `Explore registration trends and statistics for ${fuelType} in Singapore.`;
const description = `Explore registration trends and statistics for ${fuelType} cars in Singapore.`;
const images = `${SITE_URL}/api/og?type=${fuelType}&month=${month}`;
const pageUrl = `/cars/fuel-types/${fuelType}`;

Expand Down Expand Up @@ -95,7 +95,7 @@ const CarsByFuelTypePage = async (props: {
"@context": "https://schema.org",
"@type": "WebPage",
name: `${capitaliseWords(fuelType)} Car in Singapore`,
description: `Explore registration trends and statistics for ${fuelType} in Singapore.`,
description: `Explore registration trends and statistics for ${fuelType} cars in Singapore.`,
url: `${SITE_URL}/cars/fuel-types/${fuelType}`,
publisher: {
"@type": "Organization",
Expand Down
4 changes: 2 additions & 2 deletions app/cars/makes/[make]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const generateMetadata = async (props: {
const params = await props.params;
let { make } = params;
make = decodeURIComponent(make);
const description = `${make} historical trend`;
const description = `Historical trends and monthly breakdown of ${make} cars by fuel type and vehicle type in Singapore.`;
const images = `/api/og?title=Historical Trend&make=${make}`;
const canonicalUrl = `/cars/makes/${make}`;

Expand Down Expand Up @@ -77,7 +77,7 @@ const CarMakePage = async (props: { params: Params }) => {
"@context": "https://schema.org",
"@type": "WebPage",
name: `${formattedMake} Car Registrations in Singapore`,
description: `Historical trend and monthly breakdown of ${formattedMake} car registrations by fuel type and vehicle type in Singapore`,
description: `Historical trends and monthly breakdown of ${formattedMake} cars by fuel type and vehicle type in Singapore.`,
url: `${SITE_URL}/cars/makes/${make}`,
publisher: {
"@type": "Organization",
Expand Down
4 changes: 2 additions & 2 deletions app/cars/vehicle-types/[vehicleType]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const generateMetadata = async (props: {

return {
title: `${capitaliseWords(vehicleType)} Cars in Singapore`,
description: `Explore registration trends and statistics for ${vehicleType} in Singapore.`,
description: `Explore registration trends and statistics for ${vehicleType} cars in Singapore.`,
openGraph: {
images,
url: canonicalUrl,
Expand Down Expand Up @@ -88,7 +88,7 @@ const CarsByVehicleTypePage = async (props: {
"@context": "https://schema.org",
"@type": "WebPage",
name: `${capitaliseWords(vehicleType)} Cars in Singapore`,
description: `Explore registration trends and statistics for ${vehicleType} in Singapore.`,
description: `Explore registration trends and statistics for ${vehicleType} cars in Singapore.`,
url: `${SITE_URL}/cars/vehicle-types/${vehicleType}`,
publisher: {
"@type": "Organization",
Expand Down

0 comments on commit 0c5f947

Please sign in to comment.