diff --git a/src/components/LetterFooter.astro b/src/components/LetterFooter.astro index a7fd98b..b01747c 100644 --- a/src/components/LetterFooter.astro +++ b/src/components/LetterFooter.astro @@ -4,5 +4,5 @@ const letters = ['t', 'H', 'E', ' ', 't', 'E', 'M', 'P', 'L', 'E', ' ', 'b', 'B' diff --git a/src/lib/keymap.ts b/src/lib/keymap.ts index a00d64a..ea7b5f7 100644 --- a/src/lib/keymap.ts +++ b/src/lib/keymap.ts @@ -2,18 +2,18 @@ export type KeymapEntry = { key: string; href: string; label: string }; export const GLOBAL_NAV_KEYS: KeymapEntry[] = [ { key: 'B', href: '/bbs/', label: 'Back to Main Menu' }, { key: 'Q', href: 'disconnect', label: 'Disconnect' }, - { key: 'I', href: '/bbs/legal-notice', label: 'Legal Notice' }, + { key: 'I', href: '/bbs/legal-notice/', label: 'Legal Notice' }, ]; export const MENU_KEYS: KeymapEntry[] = [ - { key: 'P', href: '/bbs/pc/phobia', label: 'PHOB!A' }, - { key: 'T', href: '/bbs/pc/trancemission', label: 'Tr@nceMISSION' }, - { key: 'S', href: '/bbs/pc/skyline', label: 'SkyLINE Productions' }, - { key: 'K', href: '/bbs/pc/kosmos-design', label: 'Kosmos Design [KDS]' }, - { key: 'D', href: '/bbs/atari/tropic-dreams', label: 'Tropic DREAMs' }, - { key: 'E', href: '/bbs/amiga/esprit', label: 'ESPRIT Releases' }, - { key: 'M', href: '/bbs/amiga/mods', label: 'MOD Files' }, - { key: 'A', href: '/bbs/fido/ansi-art', label: 'BBS ANSI Art' }, - { key: 'F', href: '/bbs/fido/nodelist', label: 'Fidonets and Nodelists' }, + { key: 'P', href: '/bbs/pc/phobia/', label: 'PHOB!A' }, + { key: 'T', href: '/bbs/pc/trancemission/', label: 'Tr@nceMISSION' }, + { key: 'S', href: '/bbs/pc/skyline/', label: 'SkyLINE Productions' }, + { key: 'K', href: '/bbs/pc/kosmos-design/', label: 'Kosmos Design [KDS]' }, + { key: 'D', href: '/bbs/atari/tropic-dreams/', label: 'Tropic DREAMs' }, + { key: 'E', href: '/bbs/amiga/esprit/', label: 'ESPRIT Releases' }, + { key: 'M', href: '/bbs/amiga/mods/', label: 'MOD Files' }, + { key: 'A', href: '/bbs/fido/ansi-art/', label: 'BBS ANSI Art' }, + { key: 'F', href: '/bbs/fido/nodelist/', label: 'Fidonets and Nodelists' }, ]; export const ALL_KEYS: KeymapEntry[] = [...GLOBAL_NAV_KEYS, ...MENU_KEYS]; export function findKeyEntry(pressedKey: string): KeymapEntry | undefined {