/* This is your Nav component. It contain a responsive navbar */ import { LogOut, Menu } from 'react-feather'; import Image from 'next/image'; import Link from 'next/link'; import Logo from 'public/logo.svg'; type NavProps = { user: Record; signOut: () => void; }; const Nav = ({ user, signOut }: NavProps): JSX.Element => { // Modify you menu directly here const NavMenu = ( <> {user && ( Dashboard )} Pricing Contact Us {user ? ( ) : ( <> Login Sign Up )} ); return ( ); }; export default Nav;