This commit is contained in:
2026-03-25 20:08:25 -05:00
parent bcf9dc541c
commit 8f2f897184
4 changed files with 118 additions and 33 deletions

View File

@@ -24,6 +24,20 @@ const BlogPostPage: React.FC<BlogPostPageProps> = ({ data }) => {
? 'Local Services'
: 'IT Insights';
const schema = {
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": data.h1,
"description": data.description,
"url": `https://bayareait.services/${data.slug}`,
"image": data.image ? `https://bayareait.services${data.image}` : "https://bayareait.services/logo.svg",
"publisher": {
"@type": "Organization",
"name": "Bay Area IT",
"url": "https://bayareait.services"
}
};
return (
<>
<SEO
@@ -31,6 +45,7 @@ const BlogPostPage: React.FC<BlogPostPageProps> = ({ data }) => {
description={data.description}
keywords={data.keywords}
canonicalUrl={`https://bayareait.services/${data.slug}`}
schema={schema}
/>
<div className="min-h-screen bg-background-light dark:bg-background-dark relative overflow-x-hidden pt-32 pb-16">