"use client";

import ComponentCard from "@/src/components/admin/common/ComponentCard";
import PageProtection from "@/src/components/admin/common/PageProtection";
import AddFaqForm from "./add-faq";

export default function AddFaqPage() {
  return (
    <div className="space-y-6">
      <PageProtection pageSlug="faq.add-faq">
        <ComponentCard
          title="FAQ Management | Add FAQ"
          desc="Create, edit, and manage FAQs."
        >
          <AddFaqForm />
        </ComponentCard>
      </PageProtection>
    </div>
  );
}
