File size: 1,030 Bytes
53d93c9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import Link from 'next/link'

export default function Header() {
  return (
    <header className="bg-white shadow-sm">
      <div className="container mx-auto px-4 py-4 flex justify-between items-center">
        <div className="flex items-center space-x-2">
          <FiTool className="text-primary" size={24} />
          <Link href="/" className="text-xl font-bold text-gray-900">
            ToolSentry
          </Link>
        </div>
        <nav className="hidden md:flex space-x-6">
          <Link href="/" className="text-gray-600 hover:text-primary transition">
            Home
          </Link>
          <Link href="/" className="text-gray-600 hover:text-primary transition">
            Tools
          </Link>
          <Link href="/" className="text-gray-600 hover:text-primary transition">
            About
          </Link>
        </nav>
        <button className="bg-primary text-white px-4 py-2 rounded-md hover:bg-blue-600 transition">
          Sign In
        </button>
      </div>
    </header>
  )
}