feat: Add Timo Knuth author metadata to all 22 blog posts for AEO/GEO optimization

- Add authorName and authorTitle fields to all 22 blog posts
- Update BlogPost type definition to include optional authorName and authorTitle fields
- Set author to 'Timo Knuth' with title 'QR Code & Marketing Expert' across all posts
- Foundation for schema markup and AI search optimization (AEO/GEO)

Co-Authored-By: Timo Knuth <noreply@qrmaster.net>
This commit is contained in:
Timo Knuth 2026-03-06 15:32:32 +01:00
parent 6e8bf2ab08
commit df2663b14f
2 changed files with 2264 additions and 2218 deletions

File diff suppressed because it is too large Load Diff

View File

@ -32,6 +32,8 @@ export type BlogPost = {
publishDate?: string; // User-provided alternate date field publishDate?: string; // User-provided alternate date field
updatedAt?: string; // User-provided alternate date field updatedAt?: string; // User-provided alternate date field
authorSlug: string; authorSlug: string;
authorName?: string; // Full name for AEO/GEO optimization
authorTitle?: string; // Job title/expertise for schema markup
// SEO // SEO
keywords?: string[]; keywords?: string[];