Codex fixes
Some checks failed
Deploy Website / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-05-25 09:49:40 -04:00
parent 78ec3d58e3
commit 014b1836c0
101 changed files with 1048 additions and 7327 deletions

View File

@@ -2,14 +2,14 @@ import Link from 'next/link';
export default function NotFound() {
return (
<div className="min-h-[60vh] flex flex-col items-center justify-center px-6 text-center animate-fade-in">
<h1 className="text-6xl font-bold tracking-tight text-zinc-900 dark:text-zinc-50 mb-4">404</h1>
<p className="text-lg text-zinc-500 dark:text-zinc-400 mb-8">
<div className="page-frame flex min-h-[60vh] flex-col items-center justify-center px-6 text-center">
<h1 className="mb-4 text-6xl font-medium text-ink">404</h1>
<p className="mb-8 text-lg text-muted">
This page doesn&apos;t exist.
</p>
<Link
href="/"
className="text-sm font-medium text-zinc-900 dark:text-zinc-100 underline decoration-zinc-300 dark:decoration-zinc-700 underline-offset-4 hover:decoration-zinc-900 dark:hover:decoration-zinc-100 transition-all"
className="text-sm font-medium text-ink underline decoration-line-strong underline-offset-4 transition-colors hover:text-accent hover:decoration-accent"
>
&larr; Back to home
</Link>