diff --git a/src/routes/docs/+error.svelte b/src/routes/docs/+error.svelte index febcb0ca97..7c8d68edb4 100644 --- a/src/routes/docs/+error.svelte +++ b/src/routes/docs/+error.svelte @@ -1,21 +1,32 @@ -
-
-
-
-
-

{$page?.error?.message}

-
-
-
-
I am a placeholder for an error site.
-
-
+
+
+
+ {$page.status} +

+ {$page.error?.message ?? 'An error has occured'} +

+ {#if $page.status === 404} +

+ Sorry, it seems that the page you are looking for does not exist. Feel free to use our + navigation menu or the button below to explore more of Appwrite's documentation. +

+ {/if} + + Back to docs + +
+
+
+