"use client"; // Example data from ShadCN: https://github.com/shadcn-ui/ui/blob/0fae3fd93ae749aca708bdfbbbeddc5d576bfb2e/apps/www/registry/default/example/cards/stats.tsx#L61 import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Bar, BarChart, ResponsiveContainer } from "recharts"; import { twColourConfig } from "@/lib/twConfig"; const data = [ { revenue: 10400, subscription: 240, }, { revenue: 14405, subscription: 300, }, { revenue: 9400, subscription: 200, }, { revenue: 8200, subscription: 278, }, { revenue: 7000, subscription: 189, }, { revenue: 9600, subscription: 239, }, { revenue: 11244, subscription: 278, }, { revenue: 26475, subscription: 189, }, ]; export function DemoSubscriptions() { return ( Subscriptions
+2350

+180.1% from last month

); }