import Link from 'next/link'; import Image from 'next/image'; import { ThemeSwitcher } from '@/components/ThemeSwitcher'; import { Icons } from '@/components/ui/Icon'; interface NavbarProps { onReset: () => void; } export function Navbar({ onReset }: NavbarProps) { return ( ); }