@@ -88,8 +88,8 @@ const topReference = sortByOrder(referenceRaw.filter(e => !e.id.includes('/')),
8888 </head >
8989 <body class =" h-screen w-screen p-1 box-border flex flex-col gap-0 overflow-hidden bg-tui-bg text-tui-fg select-none" >
9090 <header class =" h-5 flex items-center px-0 gap-2 text-xs" >
91- <a href =" /lore/" class ={ ` tui-tab ${title === ' About' ? ' active' : ' ' } ` } >Home</a >
92- <a href =" /lore/reference/databank" class ={ ` tui-tab ${title === ' Databank' ? ' active' : ' ' } ` } >Installation</a >
91+ <a href =" /lore-docs /" class ={ ` tui-tab ${title === ' About' ? ' active' : ' ' } ` } >Home</a >
92+ <a href =" /lore-docs /reference/databank" class ={ ` tui-tab ${title === ' Databank' ? ' active' : ' ' } ` } >Installation</a >
9393 </header >
9494 <div class =" flex flex-1 gap-2 overflow-hidden" >
9595 <!-- Navigation Panel -->
@@ -98,15 +98,15 @@ const topReference = sortByOrder(referenceRaw.filter(e => !e.id.includes('/')),
9898 <div class =" relative border border-tui-border-inactive p-2 pt-4 flex flex-col gap-1 w-full" >
9999 <span class =" absolute -top-2.5 left-2 bg-tui-bg px-1 text-[11px] font-bold text-tui-accent tracking-tighter" >Architecture</span >
100100 { explanation .map (entry => (
101- <a href = { ` /lore/explanation/${entry .id .replace (/ \. [^ /. ] + $ / , " " )} ` } class = " py-0.5 px-2 hover:bg-tui-selected-bg hover:text-white block truncate transition-none" >{ entry .data .title } </a >
101+ <a href = { ` /lore-docs /explanation/${entry .id .replace (/ \. [^ /. ] + $ / , " " )} ` } class = " py-0.5 px-2 hover:bg-tui-selected-bg hover:text-white block truncate transition-none" >{ entry .data .title } </a >
102102 ))}
103103 </div >
104104
105105 <!-- Reference Section -->
106106 <div class =" relative border border-tui-border-inactive p-2 pt-4 flex flex-col gap-1 w-full" >
107107 <span class =" absolute -top-2.5 left-2 bg-tui-bg px-1 text-[11px] font-bold text-tui-accent tracking-tighter" >Reference</span >
108108 { topReference .map (entry => (
109- <a href = { ` /lore/reference/${entry .id .replace (/ \. [^ /. ] + $ / , " " )} ` } class = " py-0.5 px-2 hover:bg-tui-selected-bg hover:text-white block truncate transition-none" >{ entry .data .title } </a >
109+ <a href = { ` /lore-docs /reference/${entry .id .replace (/ \. [^ /. ] + $ / , " " )} ` } class = " py-0.5 px-2 hover:bg-tui-selected-bg hover:text-white block truncate transition-none" >{ entry .data .title } </a >
110110 ))}
111111 </div >
112112 </aside >
0 commit comments