import { Button } from "@chakra-ui/react";
import { Popover } from "@headlessui/react";
import { AnimatePresence, motion } from "framer-motion";
import Image from "next/image";
import Link from "next/link";
import { signOut, useSession } from "next-auth/react";
import { FaUser, FaSignOutAlt } from "react-icons/fa";
import { Avatar } from "./Avatar";
import { Container } from "./Container";
import { NavLinks } from "./NavLinks";
function MenuIcon(props) {
return (
);
}
function ChevronUpIcon(props) {
return (
);
}
function MobileNavLink({ children, ...props }) {
return (
{children}
);
}
function AccountButton() {
const { data: session } = useSession();
if (session) {
return;
}
return (
}>
Log in
);
}
export function Header() {
return (
);
}