"use client"; import Link from "next/link"; import Image from "next/image"; import { Disclosure, DisclosureButton, DisclosurePanel } from "@headlessui/react"; export default function Header() { const navigation = [ { title: "Features", href: "/#features", isExternal: false, }, { title: "Pricing", href: "/pricing", isExternal: false, }, { title: "Download", href: "/download", isExternal: false, }, { title: "GitHub", href: "https://github.com/feeddeck/feeddeck", isExternal: true, }, ]; return (