"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { Mail, Linkedin, Phone } from "lucide-react" import { cn } from "@/lib/utils" import { LanguageSwitcher } from "@/components/language-switcher" import { useLanguage } from "@/components/language-context" import { useTranslation } from "@/lib/i18n" export function Navigation() { const pathname = usePathname() const { currentLang, setCurrentLang } = useLanguage() const { t } = useTranslation(currentLang) const navItems = [ { href: "/", label: t("home") }, { href: "/about", label: t("about") }, { href: "/portfolio", label: t("portfolio") }, { href: "/projects", label: t("projects") }, { href: "/contact", label: t("contact") }, ] return (
Nhi Vo
{/* Social Icons */}
) }