"use client"; import React from "react"; import { H3 } from "./ArticleHeading"; import { Paragraph } from "./ArticleParagraph"; interface FAQItem { question: string; answer: string; } interface FAQSectionProps { children?: React.ReactNode; } /** * FAQSection: A simple semantic wrapper for FAQs in blog posts. * It can be used by the AI to wrap a list of questions and answers. */ export const FAQSection: React.FC = ({ children }) => { return (

Häufig gestellte Fragen (FAQ)

{children}
); };