"use client"; import { useTheme } from "next-themes"; import Image from "next/image"; import Link from "next/link"; const Navbar = () => { const { theme } = useTheme(); const links = [ { name: "Home", href: "#" }, { name: "About", href: "#" }, { name: "Projects", href: "#" }, { name: "Testimonials", href: "#" }, { name: "Contact", href: "#" }, ]; return ( ); }; export default Navbar;