import { Popover, Transition } from "@headlessui/react"; import { Bars3Icon, XMarkIcon } from "@heroicons/react/24/outline"; import Link from "next/link"; import { useRouter } from "next/router"; import { Fragment } from "react"; import { Button } from "@formbricks/ui"; import { FooterLogo } from "./Logo"; import { ThemeSelector } from "./ThemeSelector"; export default function Header() { const router = useRouter(); return ( Formbricks Open menu Community Blog 1 router.push("/waitlist")}> Get Access Close menu Community Blog router.push("https://github.com/formbricks/formbricks")} className="flex w-full justify-center fill-slate-800 dark:fill-slate-200"> View on Github router.push("/waitlist")} className="flex w-full justify-center"> Get access ); } function GitHubIcon(props: any) { return ( ); }
1