'use client' import { useState } from 'react' import Link from 'next/link' import { usePathname } from 'next/navigation' const navLinks = [ { href: '/', label: 'ပင်မစာမျက်နှာ' }, { href: '/category/ai-news', label: 'AI သတင်းများ' }, { href: '/category/tutorials', label: 'သင်ခန်းစာများ' }, { href: '/category/tips-tricks', label: 'အကြံပြုချက်များ' }, { href: '/category/upcoming', label: 'လာမည့်အရာများ' }, ] export default function Header() { const [mobileOpen, setMobileOpen] = useState(false) const pathname = usePathname() return (
) }