import { createFileRoute } from '@tanstack/react-router' import { usePageTitle } from '@/hooks/use-page-title' const HERMES_REPO_URL = 'https://github.com/outsourc-e/hermes-workspace' const HERMES_DISCORD_URL = 'https://discord.com/invite/agentd' export const Route = createFileRoute('/early-access')({ ssr: false, component: EarlyAccessRoute, }) function EarlyAccessRoute() { usePageTitle('HermesWorld — Early Access') return (
HermesWorld
HermesWorld
Persistent agent RPG
Early access — keys rolling out

HermesWorld is opening soon.

We are polishing characters, the Agora plaza, and the launch trailer before opening multiplayer to the public. Join Discord for early-access keys and gameplay clips, or pull the open-source workspace and play locally today.

{[ ['1', 'Star the repo', 'Star Hermes Workspace on GitHub for updates.'], ['2', 'Hop in Discord', 'Get notified the moment public play is live.'], ['3', 'Watch the trailer', 'The launch trailer drops with the public world.'], ].map(([i, title, copy]) => (
Step {i}
{title}
{copy}
))}
) }