"use client" import Image from "next/image" import Link from "next/link" import { usePathname } from "next/navigation" import PSELogo from "@/public/logos/header-logo.svg" import { NavItem } from "@/types/nav" import { cn } from "@/lib/utils" import { LocaleTypes, fallbackLng } from "@/app/i18n/settings" export interface MainNavProps { items: NavItem[] lang?: LocaleTypes } export function MainNav({ items, lang = fallbackLng }: MainNavProps) { const router = usePathname() return (
PSE Logo
) }