create-campsitejs 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-campsitejs",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "description": "Create a new Campsite static site (create-campsitejs alias).",
6
6
  "bin": {
@@ -0,0 +1,13 @@
1
+ ---
2
+ title: Error 404 - Page Not Found
3
+ layout: base.njk
4
+ description: The page you are looking for does not exist.
5
+ ---
6
+
7
+ <div class="flex min-h-96 flex-col items-center justify-center bg-stone-900 px-4 text-center">
8
+ <h1 class="text-6xl font-display font-bold text-amber-500 mb-4">404</h1>
9
+ <p class="text-xl text-stone-400 mb-8">Oops! The page you're looking for can't be found.</p>
10
+ <a href="/" class="inline-block rounded bg-amber-500 px-6 py-3 font-semibold text-white hover:bg-amber-600 transition">
11
+ Go Back Home
12
+ </a>
13
+ </div>