import { Navbar, NavbarBrand, NavbarContent, NavbarItem, Link, } from '@nextui-org/react'; import { Link as RouterLink } from 'react-router-dom'; type FrameProps = { children: React.ReactNode; }; const Frame = ({ children }: FrameProps) => { return (

Bob

Home Experiments
{children}
); }; export { Frame };