"use client"; import CountUp from "react-countup"; import React from "react"; import { Button } from "@/components/Button"; export function GridStats() { return (
{/* Column 1: Title & Description */}

Robust Infrastructure for your Intellegence Needs

Mycelium's groundbreaking technology provides dedicated, performance-validated GPUs for your AI workloads.

{/* Column 2: StatCards */}
{/* Column 3: StatCards */}
); } // 🧱 Stat Card Component function StatCard({ label, description, className = "", }: { label: string; description: string; className?: string; }) { return (
{ e.currentTarget.style.filter = 'brightness(0.8)'; }} onMouseLeave={(e) => { e.currentTarget.style.filter = 'brightness(1)'; }} >

{label}

{description}

); }