mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
"use client";
|
|
|
|
import { FAQPageJsonLd } from "next-seo";
|
|
|
|
export default function FaqJsonLdComponent({ data }) {
|
|
const faqEntities = data.map(({ question, answer }) => ({
|
|
questionName: question,
|
|
acceptedAnswerText: answer,
|
|
}));
|
|
|
|
return <FAQPageJsonLd mainEntity={faqEntities} />;
|
|
}
|