Sessions 5-7a: 955 tests, deployment ready

This commit is contained in:
Kev
2026-06-08 18:35:13 -04:00
parent 06b82624a2
commit 1fa04dc776
371 changed files with 49366 additions and 955 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ export async function generateMetadata({ params }: { params: Promise<{ slug: str
const post = getPostBySlug(slug);
if (!post) return {};
return {
title: `${post.title}BetonBLK Blog`,
title: `${post.title}VYNDR Blog`,
description: post.description,
openGraph: {
title: post.title,
@@ -62,7 +62,7 @@ export default async function BlogPost({ params }: { params: Promise<{ slug: str
headline: post.title,
description: post.description,
datePublished: post.date,
author: { '@type': 'Organization', name: 'BetonBLK' },
author: { '@type': 'Organization', name: 'VYNDR' },
}),
}}
/>