"use client"; import Link from "next/link"; import type { NavItem } from "@public-web-portals/shared"; export function MobileNav({ items, open, onClose, }: { items: NavItem[]; open: boolean; onClose: () => void; }) { if (!open) return null; return ( ); }