Wire admin studio SSR and search infrastructure

This commit is contained in:
2026-05-01 11:46:06 +02:00
parent 257b0dbef6
commit 18cea8b0f0
329 changed files with 197465 additions and 2741 deletions

View File

@@ -20,7 +20,7 @@ function Crumb({ href, children, current = false }) {
if (current) {
return (
<span
className={`${base} text-white/30`}
className={`${base} text-white/55`}
aria-current="page"
>
{children}
@@ -30,7 +30,7 @@ function Crumb({ href, children, current = false }) {
return (
<a
href={href}
className={`${base} text-white/30 hover:text-white/60 transition-colors duration-150`}
className={`${base} text-white/55 hover:text-white/80 transition-colors duration-150`}
>
{children}
</a>