Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
528 Bytes
import Cta from "../../components/cta/Cta";
import FaqList from "./FaqList";
export default function FaqPage() {
return (
<article className="bg-gray-900">
<section className="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<section className="max-w-3xl mx-auto">
<h2 className="text-center text-3xl font-extrabold text-white sm:text-4xl">
Frequently Asked Questions
</h2>
<FaqList />
</section>
</section>
<Cta />
</article>
);
}