This commit is contained in:
Gulshan Yadav 2026-02-02 05:12:01 +05:30
parent 5cd6fdcb35
commit 5126c33113
3 changed files with 4 additions and 6 deletions

View file

@ -9,7 +9,7 @@ import {
Wifi,
WifiOff,
Server,
Pickaxe,
Hammer,
} from 'lucide-react';
import { useWalletStore } from '../store/wallet';
import { useNodeStore } from '../store/node';
@ -24,7 +24,7 @@ const navItems = [
const advancedNavItems = [
{ to: '/node', label: 'Node', icon: Server },
{ to: '/mining', label: 'Mining', icon: Pickaxe },
{ to: '/mining', label: 'Mining', icon: Hammer },
{ to: '/settings', label: 'Settings', icon: Settings },
];

View file

@ -1,6 +1,6 @@
import { useEffect, useState } from 'react';
import {
Pickaxe,
Hammer,
Play,
Pause,
Square,
@ -17,7 +17,6 @@ import { useWalletStore } from '../../store/wallet';
export default function MiningDashboard() {
const {
status,
stats,
recentBlocks,
hashrateHistory,
defaultThreads,
@ -131,7 +130,7 @@ export default function MiningDashboard() {
<div className="flex items-center justify-between">
<div>
<h1 className="text-2xl font-bold text-white flex items-center gap-3">
<Pickaxe size={28} />
<Hammer size={28} />
Mining
</h1>
<p className="text-gray-400 mt-1">

View file

@ -18,7 +18,6 @@ export default function NodeDashboard() {
status,
syncProgress,
peers,
preferredMode,
lastExternalUrl,
lastNetwork,
connectExternal,