import { cn } from "@/lib/utils";
import { Badge } from "@/components/ui/badge";
export interface FaqItem {
question: string;
answer: string;
}
export interface Faq5Props {
badge?: string;
heading?: string;
description?: string;
faqs?: FaqItem[];
className?: string;
}
const defaultFaqs: FaqItem[] = [
{
question: "What is a FAQ and why is it important?",
answer:
"FAQ stands for Frequently Asked Questions. It is a list that provides answers to common questions people may have about a specific product, service, or topic.",
},
{
question: "Why should I use a FAQ on my website or app?",
answer:
"Utilizing a FAQ section on your website or app is a practical way to offer instant assistance to your users or customers. Instead of waiting for customer support responses, they can find quick answers to commonly asked questions. ",
},
{
question: "How do I effectively create a FAQ section?",
answer:
"Creating a FAQ section starts with gathering the most frequent questions you receive from your users or customers. Once you have a list, you need to write clear, detailed, and helpful answers to each question.",
},
{
question: "What are the benefits of having a well-maintained FAQ section?",
answer:
"There are numerous advantages to maintaining a robust FAQ section. Firstly, it provides immediate answers to common queries, which improves the user experience.",
},
];
const Faq5 = ({
badge = "FAQ",
heading = "Common Questions & Answers",
description = "Find out all the essential details about our platform and how it can serve your needs.",
faqs = defaultFaqs,
className,
}: Faq5Props) => {
return (
<section className={cn("py-32", className)}>
<div className="container">
<div className="text-center">
<Badge className="text-xs font-medium">{badge}</Badge>
<h1 className="mt-4 text-4xl font-semibold">{heading}</h1>
<p className="mt-6 font-medium text-muted-foreground">
{description}
</p>
</div>
<div className="mx-auto mt-14 max-w-xl">
{faqs.map((faq, index) => (
<div key={index} className="mb-8 flex gap-4">
<span className="flex size-6 shrink-0 items-center justify-center rounded-sm bg-secondary font-mono text-xs text-primary">
{index + 1}
</span>
<div>
<div className="mb-2 flex items-center justify-between">
<h3 className="font-medium">{faq.question}</h3>
</div>
<p className="text-sm text-muted-foreground">{faq.answer}</p>
</div>
</div>
))}
</div>
</div>
</section>
);
};
export { Faq5 };