import { chakra, useRecipe, Box, Button, Avatar, Stack, Text, Menu, Portal } from "@chakra-ui/react" export default function Header() { const recipe = useRecipe({ key: "header" }); const styles = recipe(); return ( {user.name} {user.email} {/* Add a drop down menu to the avatar */} Account Settings Logout {/* End drop down menu */} ); } const user = { name: "venessa kuchenik", email: "vkuchenik@contractor.usgs.gov", // avatar: "src\\assets\\user_profile.svg" }