41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "guarantee" section.
|
|
|
|
import React from 'react';
|
|
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
|
import { ShieldCheck, TrendingUp, Zap } from "lucide-react";
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function GuaranteeSection(): React.JSX.Element {
|
|
return (
|
|
<div id="guarantee" data-section="guarantee">
|
|
<SectionErrorBoundary name="guarantee">
|
|
<AboutFeaturesSplit
|
|
tag="OUR PROMISE"
|
|
title="PROFESSIONAL WEB IN 7 DAYS"
|
|
description="Or you don't pay. That simple."
|
|
items={[
|
|
{
|
|
icon: Zap,
|
|
title: "SPEED",
|
|
description: "Guaranteed delivery in 7 business days.",
|
|
},
|
|
{
|
|
icon: TrendingUp,
|
|
title: "RESULTS",
|
|
description: "Design that converts visitors into clients.",
|
|
},
|
|
{
|
|
icon: ShieldCheck,
|
|
title: "SUPPORT",
|
|
description: "Real support — not a ticket queue.",
|
|
},
|
|
]}
|
|
textAnimation="fade-blur"
|
|
imageSrc="http://img.b2bpic.net/free-photo/white-water-drop-background_23-2147787465.jpg"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|