"use client"; import Link from "next/link"; import { useAccount } from "@/contexts/AccountContext"; export default function AccountHubPage() { const { user, hydrated } = useAccount(); return (

account

Session & mirrors

This host stores handles, balances, and forum keys in your browser. Use the same links on any CyberLux .onion — import a bundle on each hostname if you want one identity everywhere.

{hydrated && user ? (

Signed in as @{user.username}

) : hydrated ? (

Not signed in on this hostname.

) : null}
); }