Spaces:
Runtime error
Runtime error
| import Link from 'next/link' | |
| export default function Header() { | |
| return ( | |
| <header className="bg-white shadow"> | |
| <div className="container mx-auto px-4 py-4 flex justify-between items-center"> | |
| <h1 className="text-2xl font-bold text-gray-800">FIN-MIP-RTGS Dashboard</h1> | |
| <Link href="https://huggingface.co/spaces/akhaliq/anycoder" className="text-sm text-blue-600 hover:underline"> | |
| Built with anycoder | |
| </Link> | |
| </div> | |
| </header> | |
| ) | |
| } |