This commit is contained in:
Timo Knuth
2026-01-28 16:02:32 +01:00
parent 1a6dc01291
commit a76bcb70e1
5 changed files with 107 additions and 3 deletions

View File

@@ -5,7 +5,14 @@ export type FAQItem = {
answer: string; // allow HTML or plain
};
export type Source = {
name: string; // "Statista QR Code Market Report 2026"
url: string; // "https://www.statista.com/..."
accessDate?: string; // "January 2026"
};
export type BlogPost = {
slug: string;
title: string;
excerpt: string; // kept for backward compatibility if needed, maps to description
@@ -34,6 +41,7 @@ export type BlogPost = {
keySteps?: string[]; // plain
faq?: FAQItem[];
relatedSlugs?: string[];
sources?: Source[]; // Primary sources for AEO trust signals
// Main content
content: string; // HTML string (mapped from contentHtml in spec to content here to match existing usage if preferred, or we stick to contentHtml)