diff --git a/pages/index.js b/pages/index.js index f745608..2e606d3 100644 --- a/pages/index.js +++ b/pages/index.js @@ -18,6 +18,7 @@ import { ChevronRight, Globe, Info, + Wallet, } from "lucide-react"; import { LineChart, @@ -55,6 +56,17 @@ if (!supabaseUrl || !supabaseAnonKey) { const ITEMS_PER_PAGE = 5; +// Add Discord icon component +const DiscordIcon = ({ className }) => ( + + + +); + export default function Dashboard() { const [metrics, setMetrics] = useState([]); const [activeNodes, setActiveNodes] = useState([]); @@ -725,6 +737,32 @@ export default function Dashboard() {

CONNECTED DHT PEERS

{node.peer_count}

+
+
+
+ +
+ Discord: + + {node.discord_user_id ? 'Linked' : 'Not linked'} + +
+
+
+ +
+ ERC20 Wallet: + + {node.wallet ? 'Linked' : 'Not linked'} + +
+