import { Fragment, useState } from "react"; import { Disclosure, Menu, Switch, Transition } from "@headlessui/react"; import { MagnifyingGlassIcon } from "@heroicons/react/20/solid"; import { Bars3Icon, BellIcon, CogIcon, CreditCardIcon, KeyIcon, SquaresPlusIcon, UserCircleIcon, XMarkIcon, UsersIcon, } from "@heroicons/react/24/outline"; const user = { name: "Debbie Lewis", handle: "deblewis", email: "debbielewis@example.com", imageUrl: "https://images.unsplash.com/photo-1517365830460-955ce3ccd263?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=4&w=320&h=320&q=80", }; const subNavigation = [ { name: "Profile", href: "#", icon: UserCircleIcon, current: true }, { name: "Password", href: "#", icon: KeyIcon, current: false }, { name: "Account", href: "#", icon: CogIcon, current: false }, { name: "Team", href: "#", icon: UsersIcon, current: false }, ]; function classNames(...classes: any) { return classes.filter(Boolean).join(" "); } export default function Setttings() { const [availableToHire, setAvailableToHire] = useState(true); const [privateAccount, setPrivateAccount] = useState(false); const [allowCommenting, setAllowCommenting] = useState(true); const [allowMentions, setAllowMentions] = useState(true); return (

Settings

{/* Profile section */}

Profile

This information will be displayed publicly so be careful what you share.

workcation.com/