[dyad] Added FAQ structured data extraction - wrote 4 file(s)

This commit is contained in:
[dyad]
2026-01-20 13:37:56 +01:00
parent 31835cda52
commit 677d7fdb53
4 changed files with 91 additions and 1 deletions

View File

@@ -11,11 +11,13 @@ import { LengthIndicator } from "./length-indicator";
import { CopyButton } from "./copy-button";
import { SerpPreview } from "./serp-preview";
import { ResultsSkeleton } from "./results-skeleton";
import { FaqDisplay } from "./faq-display";
interface MetaData {
title: string;
description: string;
image?: string | null;
faq?: { question: string; answer: string }[] | null;
}
export function MetaForm() {
@@ -159,6 +161,10 @@ export function MetaForm() {
</div>
</div>
)}
{metaData.faq && metaData.faq.length > 0 && (
<FaqDisplay faqs={metaData.faq} />
)}
</div>
<div className="space-y-6">
<div>