Switch to version 1: remove src/pages/HomePage/sections/Metrics.tsx

This commit is contained in:
2026-06-25 11:07:40 +00:00
parent 24346f5d50
commit eea9afa3a5

View File

@@ -1,38 +0,0 @@
// 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 { Award, Building, Home, Layout, Palette, Star } 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="Impact"
title="Our Design Journey"
description="Quantifiable commitment to our clients' satisfaction."
metrics={[
{
icon: Award,
title: "Projects Completed",
value: "150+",
},
{
icon: Star,
title: "Happy Clients",
value: "120+",
},
{
icon: Layout,
title: "Custom Designs",
value: "500+",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}