import { Dialog } from "@headlessui/react"; import { Bars3Icon, XMarkIcon } from "@heroicons/react/24/outline"; import { h } from "preact"; import { useState } from "preact/hooks"; const navigation = [ { name: "Product", href: "#" }, { name: "Features", href: "#" }, { name: "Marketplace", href: "#" }, { name: "Company", href: "#" }, ]; export function HeroSections() { const [mobileMenuOpen, setMobileMenuOpen] = useState(false); return (
Your Company
{navigation.map((item) => ( {item.name} ))}
); }