Initial commit: New industrial design with green theme

This commit is contained in:
Kunthawat Greethong
2026-02-25 22:04:30 +07:00
commit ed1150ceaf
255 changed files with 15546 additions and 0 deletions

20
src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,20 @@
import Link from 'next/link';
export default function NotFound() {
return (
<div className="min-h-[60vh] flex items-center justify-center">
<div className="text-center px-4">
<h1 className="text-6xl font-bold text-secondary-900 mb-4">404</h1>
<h2 className="text-2xl font-bold text-secondary-700 mb-4">
</h2>
<p className="text-secondary-600 mb-8">
</p>
<Link href="/" className="btn-primary">
</Link>
</div>
</div>
);
}