From 309b72e1f70afad944888ec5cc95d57dd6197c21 Mon Sep 17 00:00:00 2001 From: jycouet Date: Sat, 24 Jan 2026 22:44:34 +0100 Subject: [PATCH] add error --- src/routes/+error.svelte | 87 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/routes/+error.svelte diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte new file mode 100644 index 0000000..e7718b6 --- /dev/null +++ b/src/routes/+error.svelte @@ -0,0 +1,87 @@ + + +
+
+ +
+ +
+ {$page.status} + Error +
+ + +
+ Oops! +
+ + +
+ :( +
+ + +
+

+ {$page.error?.message || + "Something went wrong. We couldn't find what you're looking for."} +

+
+ + +
+
+ {#each Array(9) as _, i (i)} +
+ {/each} +
+
+ + + + Go Home + + + +
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+ + + +
-- 2.51.2