import type { JSX } from 'react' import { AppShell, Box, Burger, Button, Flex } from '@mantine/core' import { Link } from 'tuono' import Actions from './actions' interface NavbarProps { toggle: () => void } export default function Navbar({ toggle }: NavbarProps): JSX.Element { return ( ) }