Switch to version 2: added src/pages/HomePage/sections/Faq.tsx

This commit is contained in:
2026-06-07 19:02:07 +00:00
parent 8d2c771ecd
commit 43994331d6

View File

@@ -0,0 +1,42 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSimple
tag="Got Questions?"
title="Frequently Asked Questions"
description="Find quick answers to common queries about our menu, ordering, and services."
items={[
{
question: "Do you offer gluten-free options?",
answer: "Yes, we offer delicious gluten-free crust options for an additional charge. Please specify when ordering.",
},
{
question: "What are your delivery hours?",
answer: "We deliver from 11 AM to 9 PM, Tuesday through Sunday. Minimum order applies for delivery.",
},
{
question: "Can I customize my pizza?",
answer: "Absolutely! You can choose your crust, sauce, cheese, and a wide variety of fresh toppings to create your perfect pizza.",
},
{
question: "Do you cater for events?",
answer: "Yes, we offer catering services for events of all sizes. Please contact us directly for our catering menu and custom packages.",
},
{
question: "Are reservations required for dining in?",
answer: "While not strictly required, reservations are highly recommended, especially on weekends and for larger groups, to ensure you get a table.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}