import { Fragment } from "react"; import { Disclosure, Menu, Transition } from "@headlessui/react"; import { Bars3Icon, BellIcon, XMarkIcon } from "@heroicons/react/24/outline"; const user = { name: "Timur Ercan", email: "timur@documenso.com", imageUrl: "https://pbs.twimg.com/profile_images/1382036502390181888/4BT30oTM_400x400.jpg", }; const navigation = [ { name: "Dashboard", href: "/", current: true }, { name: "Team", href: "/", current: false }, { name: "Settings", href: "settings" }, ]; const userNavigation = [ { name: "Your Profile", href: "#" }, { name: "Sign out", href: "#" }, ]; function classNames(...classes: any) { return classes.filter(Boolean).join(" "); } export default function Layout({ children }: any) { return ( <>