Update visual regression tests

This commit is contained in:
adilallo
2025-09-12 16:01:12 -06:00
parent 500d2d0965
commit 842bbe44f1
5 changed files with 56 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
export default function NotFound() {
return (
<div className="min-h-screen bg-[#F4F3F1] flex items-center justify-center">
<div className="text-center">
<h1 className="text-6xl font-bold text-[var(--color-content-default-primary)] mb-4">
404
</h1>
<p className="text-[var(--color-content-default-secondary)]">
Page Not Found
</p>
</div>
</div>
);
}