Switch to version 1: remove src/pages/HomePage/sections/Faq.tsx

This commit is contained in:
2026-06-20 22:56:29 +00:00
parent 01e22de126
commit 755d416d1e

View File

@@ -1,34 +0,0 @@
// 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="Support"
title="Common Questions"
description="Find answers to our most popular inquiries."
items={[
{
question: "What areas do you serve?",
answer: "We serve the entire metro area.",
},
{
question: "Are you licensed and insured?",
answer: "Yes, we are fully licensed and insured.",
},
{
question: "How do I get a quote?",
answer: "Click the contact button to send us a message!",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}