'use client' import Link from 'next/link' import { useEngineStore } from '@/store/engineStore' import { cn } from '@/lib/utils' import ThemeToggle from '@/components/layout/ThemeToggle' export default function Header() { const status = useEngineStore((s) => s.status) const call = (path: string) => fetch(`/api/engine/${path}`, { method: 'POST' }) const isRunning = status === 'Running' const isPaused = status === 'Paused' return (
{/* Gradient border at bottom */}
{/* Brand */}
G
{/* Glow behind logo */}
Ghost Node Auction Sniper ยท v2.7
{/* Controls */}
{/* Status pill */}
{status}
) }