39 lines
1.3 KiB
TypeScript
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>
|
|
);
|
|
}
|