import type { AuthSessionUser } from "@qltysh/fabro-api-client"; import { useAuthMe } from "../lib/queries"; import { Mono, Muted, Panel, PanelSkeleton, Row, UrlValue, } from "../components/settings-panel"; export function meta({}: any) { return [{ title: "Profile — Fabro" }]; } export default function Profile() { const { data: auth } = useAuthMe(); if (!auth) { return (