Skip to content

Commit bb29bdd

Browse files
committed
Merge branch 'main' of https://github.com/xanderbilla/nextjs-template into xanderbilla
2 parents 1c9dd1c + 4893980 commit bb29bdd

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
Absolutely! Here's a **professionally rewritten version** of your `README.md` that enhances clarity, structure, and tone, and aligns with industry standards for commercial open-source templates:
2-
31
# **Next.js Template**
42

53
A clean, modern, and production-ready **Next.js 14** template featuring a polished landing page, **Tailwind CSS** styling, **Docker** support, and dark mode compatibility.

app/not-found.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import Link from "next/link";
2+
3+
export default function NotFound() {
4+
return (
5+
<div className="min-h-screen flex flex-col items-center justify-center bg-slate-950">
6+
<div className="text-center space-y-6">
7+
<h1 className="text-8xl font-bold text-slate-200">404</h1>
8+
<h2 className="text-4xl text-slate-300">Page Not Found</h2>
9+
<p className="text-slate-400 text-lg max-w-md mx-auto">
10+
Oops! The page you are looking for does not exist. It might have been
11+
moved or deleted.
12+
</p>
13+
<Link
14+
href="/"
15+
className="inline-flex items-center gap-2 mt-4 px-8 py-3 rounded-full bg-slate-200 text-slate-950 font-medium hover:bg-slate-100 transition-all duration-300"
16+
>
17+
<span>Return Home</span>
18+
<span className="text-xl"></span>
19+
</Link>
20+
</div>
21+
</div>
22+
);
23+
}

0 commit comments

Comments
 (0)