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

This commit is contained in:
2026-06-16 08:16:05 +00:00
parent b87041226c
commit 35a0ad193d

View File

@@ -1,39 +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 FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSplitMedia
tag="Common Questions"
title="Frequently Asked Questions"
description="Answers to help you make informed decisions about your dental health."
items={[
{
question: "Is treatment painful?",
answer: "We utilize advanced anesthetic technology to ensure all procedures are completely painless and comfortable.",
},
{
question: "Do you accept emergency cases?",
answer: "Yes, we provide 24/7 priority care for all dental emergencies. Call us immediately.",
},
{
question: "What are your consultation charges?",
answer: "Consultation charges start at just ₹499 for a full treatment plan.",
},
{
question: "How long does a root canal take?",
answer: "Most root canal treatments are completed within a single or two visits depending on complexity.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23916.jpg"
/>
</SectionErrorBoundary>
</div>
);
}