2025-10-06 06:21:08 +00:00
|
|
|
"use client";
|
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { Search, ShoppingCart, Lock } from "lucide-react";
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
|
|
|
|
|
export default function Navbar() {
|
|
|
|
|
const [date] = useState(() => {
|
|
|
|
|
const now = new Date();
|
|
|
|
|
return new Intl.DateTimeFormat("id-ID", {
|
|
|
|
|
weekday: "long",
|
|
|
|
|
year: "numeric",
|
|
|
|
|
month: "long",
|
|
|
|
|
day: "numeric",
|
|
|
|
|
}).format(now);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<header className="w-full border-b border-gray-200">
|
|
|
|
|
{/* Topbar */}
|
|
|
|
|
<div className="flex justify-between items-center bg-teal-400 text-white text-sm px-6 py-2">
|
|
|
|
|
<span>{date}</span>
|
|
|
|
|
<div className="flex space-x-4 items-center">
|
|
|
|
|
<Link href="/shop">Shop</Link>
|
|
|
|
|
<Link href="/account">My Account</Link>
|
|
|
|
|
<Link href="/contact">Contact Us</Link>
|
|
|
|
|
<Link href="/auth" className="flex items-center gap-1">
|
|
|
|
|
<Lock size={14} /> Login
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Main Navbar */}
|
|
|
|
|
<div className="flex items-center justify-between px-6 py-4 bg-white">
|
|
|
|
|
{/* Logo */}
|
|
|
|
|
<Link href="/" className="text-2xl font-bold">
|
|
|
|
|
<span className="text-gray-900">travel</span>
|
|
|
|
|
<span className="text-teal-400">news</span>
|
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
|
|
{/* Menu */}
|
|
|
|
|
<nav className="hidden md:flex space-x-6 font-semibold text-sm">
|
|
|
|
|
<Link href="/" className="hover:text-teal-400">
|
|
|
|
|
HOME
|
|
|
|
|
</Link>
|
2025-10-07 06:43:54 +00:00
|
|
|
<Link href="/category/travel-news" className="hover:text-teal-400">
|
2025-10-06 06:21:08 +00:00
|
|
|
TRAVEL NEWS
|
|
|
|
|
</Link>
|
2025-10-07 06:43:54 +00:00
|
|
|
<Link href="/category/health" className="hover:text-teal-400">
|
2025-10-06 06:21:08 +00:00
|
|
|
DESTINATION
|
|
|
|
|
</Link>
|
2025-10-07 06:43:54 +00:00
|
|
|
<Link href="/category/development" className="hover:text-teal-400">
|
2025-10-06 06:21:08 +00:00
|
|
|
TRAVEL IDEAS
|
|
|
|
|
</Link>
|
2025-10-07 06:43:54 +00:00
|
|
|
{/* <Link href="/category/popular" className="hover:text-teal-400">
|
2025-10-06 06:21:08 +00:00
|
|
|
FOOD & DRINK
|
2025-10-07 06:43:54 +00:00
|
|
|
</Link> */}
|
2025-10-06 06:21:08 +00:00
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
{/* Icons */}
|
|
|
|
|
<div className="flex items-center space-x-4">
|
|
|
|
|
<button aria-label="Search">
|
|
|
|
|
<Search size={20} className="text-gray-700" />
|
|
|
|
|
</button>
|
|
|
|
|
<button aria-label="Cart">
|
|
|
|
|
<ShoppingCart size={20} className="text-gray-700" />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
}
|