Files
83c352b8-732a-43b9-b136-40c…/src/pages/HomePage/sections/Features.tsx

38 lines
1.6 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 FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FeaturesSection(): React.JSX.Element {
return (
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesRevealCards
tag="Why Us?"
title="Service Excellence Guaranteed"
description="We go beyond just picking up trash; we ensure your project sites and community remain clean and safe."
items={[
{
title: "On-time Delivery",
description: "We pride ourselves on prompt container drop-offs and pick-ups.",
imageSrc: "http://img.b2bpic.net/free-photo/industrial-vent-coming-out-building_122409-13.jpg",
},
{
title: "Expert Personnel",
description: "Our trained staff handles every project with care and precision.",
imageSrc: "http://img.b2bpic.net/free-photo/young-male-volunteer-cleans-up-bottles-forest_169016-22997.jpg",
},
{
title: "Eco-friendly Disposal",
description: "We prioritize recycling and responsible landfill practices.",
imageSrc: "http://img.b2bpic.net/free-photo/drawer-workshop_23-2147773382.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}