Files
f6653f69-4793-4874-b605-04b…/src/pages/HomePage/sections/Metrics.tsx

39 lines
1.3 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import { Coffee, Leaf, Users } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Our Journey & Impact"
title="Brewing Success Together"
description="A few numbers that highlight our dedication to quality, community, and the perfect coffee experience we strive to deliver every single day."
metrics={[
{
icon: Coffee,
title: "Cups Brewed Daily",
value: "800+",
},
{
icon: Users,
title: "Happy Customers",
value: "10K+",
},
{
icon: Leaf,
title: "Ethical Sourcing",
value: "100%",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}