"use client"; import Link from "next/link"; import { LanguageSwitcher } from "@/components/sections/lang/language-switcher"; import { ThemeToggle } from "@/components/sections/theme/theme-toggle"; import { Dictionary } from "@/lib/IDict"; import { CyberButton } from "../ui/cyber-button"; import { cn } from "@/lib/utils"; export function Header({ dict, lang, }: { dict: Dictionary["nav"]; lang: string; }) { return (
{/* ЛЕВЫЙ БЛОК: Адаптивный Логотип */}
Net runner VPN
{/* ЦЕНТРАЛЬНЫЙ БЛОК: Навигация (скрыта на мобилках) */} {/* ПРАВЫЙ БЛОК: Контролы */}
{dict.cta}
); }