'use client'; import Link from 'next/link'; import { useAuth } from '@/context/AuthContext'; import { useTranslation } from '@/context/I18nContext'; import { LayoutDashboard, ShieldCheck, LogOut, Webhook, Settings, Globe } from 'lucide-react'; export function Navbar() { const { t, language, setLanguage } = useTranslation(); const { user, logout } = useAuth(); return ( ); }