"use client"; import { useEffect, useState } from "react"; import Link from "next/link"; import { c2api } from "@/lib/c2api"; import { useNodes } from "@/lib/useNodes"; import { getCurrentSubscription, getPlan, type Subscription } from "@/lib/billing"; import { Card, CardHeader } from "@/components/ui/Card"; import { Badge } from "@/components/ui/Badge"; import { Button } from "@/components/ui/Button"; import { Skeleton } from "@/components/ui/Skeleton"; function StatTile({ label, value }: { label: string; value: string | number }) { return (
{label}
{value}