Files
71c748c4-af75-4099-8f09-1a2…/src/pages/HomePage/sections/Features.tsx

31 lines
1.1 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "features" section.
import React from 'react';
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FeaturesSection(): React.JSX.Element {
return (
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesComparison
tag="Our Services"
title="Why Choose Homeopathy?"
description="A comparative look at why our patients prefer natural holistic care."
negativeItems={[
"Reliance on synthetic drugs",
"Temporary symptom suppression",
"Potential for harsh side effects",
]}
positiveItems={[
"Holistic natural treatment",
"Root cause healing",
"Gentle non-invasive methods",
]}
/>
</SectionErrorBoundary>
</div>
);
}