diff --git a/src/components/sections/metrics/MetricsSimpleCards.tsx b/src/components/sections/metrics/MetricsSimpleCards.tsx index e0b75bd..e69de29 100644 --- a/src/components/sections/metrics/MetricsSimpleCards.tsx +++ b/src/components/sections/metrics/MetricsSimpleCards.tsx @@ -1,71 +0,0 @@ -import Button from "@/components/ui/Button"; -import TextAnimation from "@/components/ui/TextAnimation"; -import GridOrCarousel from "@/components/ui/GridOrCarousel"; -import ScrollReveal from "@/components/ui/ScrollReveal"; - -type Metric = { - value: string; - description: string; -}; - -const MetricsSimpleCards = ({ - tag, - title, - description, - primaryButton, - secondaryButton, - metrics, -}: { - tag: string; - title: string; - description: string; - primaryButton?: { text: string; href: string }; - secondaryButton?: { text: string; href: string }; - metrics: Metric[]; -}) => ( -
-
-
-
-

{tag}

-
- - - - - - {(primaryButton || secondaryButton) && ( -
- {primaryButton &&
- )} -
- - - - {metrics.map((metric) => ( -
- {metric.value} -

{metric.description}

-
- ))} -
-
-
-
-); - -export default MetricsSimpleCards;