Switch to version 1: remove src/pages/HomePage/sections/TrustBanner.tsx
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
import React from 'react';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
import { CheckCircle2 } from "lucide-react";
|
||||
|
||||
export default function TrustBannerSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="trust-banner" data-webild-section="trust-banner" className="bg-card py-6 border-y border-border">
|
||||
<SectionErrorBoundary name="trust-banner">
|
||||
<div className="w-content-width mx-auto px-4">
|
||||
<div className="flex flex-wrap justify-center gap-8 md:gap-12">
|
||||
{[
|
||||
"Experienced Specialists",
|
||||
"Modern Equipment",
|
||||
"Pain-Free Treatments",
|
||||
"Affordable Pricing"
|
||||
].map((item, i) => (
|
||||
<div key={i} className="flex items-center gap-2 text-foreground font-medium">
|
||||
<CheckCircle2 className="w-5 h-5 text-primary-cta" />
|
||||
<span>{item}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user