skills
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user