import Link from "next/link"; export const Nav = () => { // flex items-center justify-around mt-4 mb-4 return ( ); }; function NavLink(props: { href: string; text: string }) { const { href, text } = props; return (
  • {text}
  • ); }