This commit is contained in:
2025-09-15 18:14:25 +02:00
parent d8da5325de
commit 225c10a853
7 changed files with 300 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
import CountUp from "react-countup";
import React from "react";
import { Button } from "./Button";
import { Button } from "@/components/Button";
export function GridStats() {
return (
@@ -63,16 +63,10 @@ export function GridStats() {
function StatCard({
label,
description,
value,
unit,
note,
className = "",
}: {
label: string;
description: string;
value: React.ReactNode;
unit?: string;
note: string;
className?: string;
}) {
return (