feat: remove hardcoded descriptions

This commit is contained in:
2026-02-03 16:18:33 -06:00
parent 4203b63893
commit 754f6a22f0
3 changed files with 8 additions and 12 deletions

View File

@@ -73,14 +73,11 @@ const categories = (await getCollection('categories'))
},
};
});
const description =
'Here are some of the general categories that I am interested in, including homelabs, technology, and Minnesota.';
---
<BaseLayout
title="All Categories"
description={description}
description={global.about_categories}
structuredData={{
'@context': 'https://schema.org',
'@type': 'WebPage',
@@ -88,7 +85,7 @@ const description =
'@id': Astro.url.href,
url: Astro.url.href,
name: `All Categories | ${global.name}`,
description: description,
description: global.about_categories,
isPartOf: {
'@type': 'WebSite',
url: global.site_url,
@@ -99,7 +96,7 @@ const description =
>
<HeroSection
title="Categories"
subTitle={description}
subTitle={global.about_categories}
src={categoryImg}
alt={global.categories_image_alt}
/>