/** @jsx jsx */
import { PropsWithChildren, jsx } from "https://deno.land/x/hono@v4.3.10/middleware.ts"
import { _css } from "../../lib/utils.ts";
import { User } from "../../lib/storage.ts";
//
export default function Heading({ username }: PropsWithChildren<{username: string | null}>) {
return (
TwiFeur
{(username !== null) &&
}
)
}
function MenuItem({ name, location }: { name: string, location: string }) {
return (
{name}
)
}