Merge version_15_1780924109195 into main #12

Merged
bender merged 1 commits from version_15_1780924109195 into main 2026-06-08 13:10:18 +00:00

View File

@@ -1,32 +1,95 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
import { Users, Award, Cake } from 'lucide-react';
import type { LucideIcon } from "lucide-react";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import GridOrCarousel from "@/components/ui/GridOrCarousel";
import ScrollReveal from "@/components/ui/ScrollReveal";
import { resolveIcon } from "@/utils/resolve-icon";
import React from 'react';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import { Award, Cake, Heart, Truck, Users, Wheat } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const metrics = [
{
icon: Users,
title: "Happy Customers",
value: "10,000+"
},
{
icon: Award,
title: "Years Baking",
value: "15+"
},
{
icon: Cake,
title: "Items Baked Daily",
value: "500+"
}
];
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Our Impact"
title="A Taste of Our Success"
description="Proudly serving our community with passion and dedication. Our numbers reflect the trust and joy we've shared with countless customers."
metrics={[
{
icon: Users,
title: "Happy Customers", value: "10,000+"},
{
icon: Award,
title: "Years Baking", value: "15+"},
{
icon: Cake,
title: "Items Baked Daily", value: "500+"},
]}
type Metric = {
icon: string | LucideIcon;
title: string;
value: string;
};
const MetricsInline = () => (
<section aria-label="Metrics section" className="py-20">
<div className="flex flex-col gap-8 md:gap-10">
<div className="flex flex-col items-center gap-2 w-content-width mx-auto">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"Our Impact"}</p>
</div>
<TextAnimation
text={"A Taste of Our Success"}
variant="fade-blur"
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
/>
</SectionErrorBoundary>
<TextAnimation
text={"Proudly serving our community with passion and dedication. Our numbers reflect the trust and joy we've shared with countless customers."}
variant="fade-blur"
gradientText={false}
tag="p"
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
/>
{(undefined || undefined) && (
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
</div>
)}
</div>
<ScrollReveal variant="slide-up">
<GridOrCarousel>
{metrics.map((metric) => {
const IconComponent = resolveIcon(metric.icon);
return (
<div key={metric.value} className="flex flex-col items-center justify-center gap-3 xl:gap-3.5 2xl:gap-4 p-6 xl:p-7 2xl:p-8 min-h-70 xl:min-h-80 2xl:min-h-90 h-full card rounded transition-all duration-500 ease-out hover:-translate-y-4 hover:scale-105 hover:shadow-[0_35px_60px_-15px_rgba(0,0,0,0.3)] hover:rotate-1">
<div className="flex items-center justify-center gap-2 min-w-0">
<div className="flex items-center justify-center shrink-0 size-8 primary-button rounded">
<IconComponent className="h-2/5 w-2/5 text-primary-cta-text" strokeWidth={1.5} />
</div>
<span className="text-xl truncate min-w-0">{metric.title}</span>
</div>
<span className="text-9xl md:text-8xl font-semibold leading-none truncate">{metric.value}</span>
</div>
);
})}
</GridOrCarousel>
</ScrollReveal>
</div>
</section>
);
export default function MetricsSection() {
return (
<div data-webild-section="metrics" id="metrics">
<MetricsInline />
</div>
);
}