50 lines
1.5 KiB
TypeScript
50 lines
1.5 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 MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function MetricsSection(): React.JSX.Element {
|
|
return (
|
|
<div id="metrics" data-section="metrics">
|
|
<SectionErrorBoundary name="metrics">
|
|
<MetricsFeatureCards
|
|
tag="Our Impact"
|
|
title="Quality You Can Taste"
|
|
description="Numbers behind our commitment to great Bulgarian cuisine."
|
|
metrics={[
|
|
{
|
|
value: "4.6",
|
|
title: "Average Rating",
|
|
features: [
|
|
"76+ reviews",
|
|
"Verified diners",
|
|
"High customer satisfaction",
|
|
],
|
|
},
|
|
{
|
|
value: "10-20",
|
|
title: "Average Price (BGN)",
|
|
features: [
|
|
"Affordable dining",
|
|
"Excellent value",
|
|
"Generous portions",
|
|
],
|
|
},
|
|
{
|
|
value: "15+",
|
|
title: "Years of Tradition",
|
|
features: [
|
|
"Proven recipes",
|
|
"Established quality",
|
|
"Local favorite",
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|