import type { V2_MetaFunction } from "@remix-run/node"; import { useOptionalUser } from "~/utils"; export const meta: V2_MetaFunction = () => [{ title: "Awesome Radio" }]; export default function Index() { const user = useOptionalUser(); return (

Hello there

Provident cupiditate voluptatem et in. Quaerat fugiat ut assumenda excepturi exercitationem quasi. In deleniti eaque aut repudiandae et a id nisi.

); }