We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 724b3af commit 11b9952Copy full SHA for 11b9952
2 files changed
src/app/blog/not-found.js
@@ -0,0 +1,11 @@
1
+import Link from 'next/link'
2
+
3
+export default function NotFound() {
4
+ return (
5
+ <div>
6
+ <h2>Not Found</h2>
7
+ <p>Could not find requested resource</p>
8
+ <Link href="/">Regresar al Inicio</Link>
9
+ </div>
10
+ )
11
+}
src/app/feed/loading.js
@@ -0,0 +1,4 @@
+export default function Loading() {
+ // Or a custom loading skeleton component
+ return <p>Loading...</p>
+ }
0 commit comments