From 389a044ab42faa2133244174fd85465c71c83805 Mon Sep 17 00:00:00 2001 From: Jesper Lund Date: Tue, 9 Apr 2024 17:27:27 +0400 Subject: [PATCH] fix(solutions-blog): added not-found page (#902) cc: @leerob ### Description Added a custom "not found" page. The default one breaks the layout. ### Demo Screenshot: ![Screenshot 2024-04-09 at 09 58 07](https://github.com/vercel/examples/assets/5707542/8b17b405-bff4-496b-bc03-f0d1dfab812f) ### Type of Change - [ ] New Example - [x] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) --- solutions/blog/app/not-found.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 solutions/blog/app/not-found.tsx diff --git a/solutions/blog/app/not-found.tsx b/solutions/blog/app/not-found.tsx new file mode 100644 index 000000000..dfacc8f22 --- /dev/null +++ b/solutions/blog/app/not-found.tsx @@ -0,0 +1,12 @@ +export default function NotFound() { + return ( +
+

+ 404 - Page Not Found +

+

+ The page you are looking for does not exist. +

+
+ ) +} \ No newline at end of file