fix: UX deep dive — 28 fixes across authoring, navigation, consistency, and cleanup #86

Merged
chihlasm merged 11 commits from feat/ux-deep-dive into main 2026-02-20 03:10:47 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 65b0514b40 - Show all commits

View File

@@ -2,7 +2,7 @@ import { Spinner } from '@/components/common/Spinner'
export function PageLoader() {
return (
<div className="flex h-screen items-center justify-center bg-black">
<div className="flex h-full items-center justify-center">
<div className="flex flex-col items-center gap-4">
<Spinner size="lg" />
<p className="text-sm text-muted-foreground">Loading...</p>

View File

@@ -17,7 +17,7 @@ export function RouteError() {
}
return (
<div className="flex min-h-screen flex-col items-center justify-center bg-black p-8">
<div className="flex min-h-screen flex-col items-center justify-center bg-background p-8">
<div className="max-w-md text-center">
<h1 className="mb-2 text-4xl font-bold text-foreground">Oops!</h1>
<h2 className="mb-2 text-xl font-semibold text-red-400">{errorMessage}</h2>