"use client"; import { Languages, Palette, Shield, User } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Button } from "poyraz-ui/atoms"; export type PortalSettingsNavigationLabels = { appearance: string; language: string; profile: string; security: string; }; const items = [ { key: "language", href: "/portal/settings/language", icon: Languages }, { key: "appearance", href: "/portal/settings/appearance", icon: Palette }, { key: "profile", href: "/portal/settings/profile", icon: User }, { key: "security", href: "/portal/settings/security", icon: Shield }, ] as const; export function PortalSettingsNavigation({ labels, }: { labels: PortalSettingsNavigationLabels; }) { const pathname = usePathname(); return ( ); }