File size: 456 Bytes
8129bc2
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Link from 'next/link'

export default function Header() {
  return (
    <header className="bg-gray-800 text-white p-4">
      <div className="container mx-auto flex justify-between items-center">
        <h1 className="text-xl font-bold">RTS Nations Simulator</h1>
        <Link href="https://huggingface.co/spaces/akhaliq/anycoder" className="text-sm hover:underline">
          Built with anycoder
        </Link>
      </div>
    </header>
  )
}