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

This commit is contained in:
2026-06-25 11:07:39 +00:00
parent a41bd43b10
commit bb3a61d1a8

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="Knowledge"
title="Frequently Asked"
description="Common questions about our interior design workflow."
items={[
{
question: "Where do you operate?",
answer: "We serve all regions across Lebanon.",
},
{
question: "Do you handle custom furniture?",
answer: "Yes, we specialize in bespoke custom furniture and installations.",
},
{
question: "How long is a design process?",
answer: "Varies by project scale; average residential project is 3-6 months.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}