type NavbarProps = { pages: Record; }; export default function Navbar(props: NavbarProps) { return ( <>

{JSON.stringify(props.pages)}

); }