diff --git a/frontend/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx index 85ae0d8..8ca3a85 100644 --- a/frontend/src/app/dashboard/page.tsx +++ b/frontend/src/app/dashboard/page.tsx @@ -2,17 +2,7 @@ import { useEffect, useState } from "react"; import { useRouter } from "next/navigation"; -import { - BadgeDollarSign, - Clock3, - Loader2, - RefreshCw, - ShieldCheck, - PlusCircle, - History, - LayoutDashboard, - Trophy, -} from "lucide-react"; +import { Terminal } from "lucide-react"; import { toast } from "sonner"; import { Button } from "@/components/ui/button"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; @@ -59,7 +49,7 @@ export default function DashboardPage() { setWallet(walletRes.data); setPendingRequests(reqRes.data.requests || []); } catch { - toast.error("Failed to load dashboard"); + toast.error("ERR_DASH_LOAD"); } finally { setIsLoading(false); } @@ -90,176 +80,130 @@ export default function DashboardPage() { if (isLoading) return ( -
- +
+ _LOADING_COOP_V1.0.4
); return ( -
-
-
-
-
- -
-
-
-
-
- Barnyard coop -
-

- Nest Dashboard -

+
+
+
+
+ + COOP_STATION_V1 // {new Date().toLocaleDateString()}
+
+ + +
+
-
+
+
+
+ User_Balance +
+
+ {formatNumber(wallet?.balance || 0)} $COOP +
+
+
+
+ In_Transit +
+
+ {pendingRequests.length} PKTS +
+
+
+
+ Sys_Costs +
+
+ {requestCosts.movie}/{requestCosts.tv} +
+
+
- -
-
-
-
-
-
- - - Nest Egg - -
-
- {formatNumber(wallet?.balance || 0)} - - $COOP - -
+
+
+ + + + HIST + + + REQS + + + FLCK + + +
+ + + + + + + + +
- -
-
- - - In Transit - -
-
- {pendingRequests.length} - - Pipes - -
-
- -
-
- - - Costs - -
-
- {requestCosts.movie} / {requestCosts.tv} -
- Movie / TV -
-
-
-
- -
- - - - - History - - - - Requests - - - - Flock - - -
- - - - - - - - - -
-
-
+
-
-
-
-

- Barn Noise -

-
-
-
- -
+
+
+ >> SYSTEM_LOG +
+
+
- +
+ COOP OS // ALL_SYSTEMS_GO + LATENCY: 42MS // BH: {wallet?.totalEarned || 0} +
+ +
); } diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index 7d7cd9b..2dd53b6 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -1,8 +1,8 @@ @import "tailwindcss"; @theme { - --font-sans: var(--font-inter), ui-sans-serif, system-ui, sans-serif; - --font-display: var(--font-abril), Georgia, "Times New Roman", serif; + --font-sans: "JetBrains Mono", "Fira Code", monospace; + --font-display: "JetBrains Mono", monospace; --color-border: hsl(var(--border)); --color-input: hsl(var(--input));