'use client'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; export default function DesktopMenu({ items, locale }: { items: []; locale: string }) { const t = useTranslations('routes'); return ( ); }