import Link from "next/link"
import { SITE_NAME } from "@/lib/constants"
import { CartIcon } from "@/features/cart/CartIcon"

export function Navbar() {
  return (
    <nav className="sticky top-0 z-50 border-b border-gray-200 bg-white/95 backdrop-blur">
      <div className="mx-auto flex h-16 max-w-7xl items-center justify-between px-4 sm:px-6 lg:px-8">
        <Link href="/" className="text-xl font-bold tracking-tight text-black">
          {SITE_NAME}
        </Link>

        <div className="flex items-center gap-6">
          <Link
            href="/products"
            className="text-sm font-medium text-gray-600 transition-colors hover:text-black"
          >
            Shop
          </Link>
          <CartIcon />
        </div>
      </div>
    </nav>
  )
}
