This commit is contained in:
NotII
2025-05-17 17:52:25 +01:00
parent e338a5d0b2
commit f8e3173067
13 changed files with 6 additions and 476 deletions

View File

@@ -6,16 +6,13 @@ import { Button } from "@/components/ui/button";
import Link from "next/link";
import { AnimatedStatsSection } from "@/components/animated-stats-section";
// Force the page to be dynamically rendered
export const dynamic = 'force-dynamic';
// Constants
const PY_20 = 20;
const PY_32 = 32;
const PX_6 = 6;
const PX_10 = 10;
// Format number with commas
function formatNumberValue(num: number): string {
return new Intl.NumberFormat().format(Math.round(num));
}