This commit is contained in:
Jesse Winton
2024-08-27 15:06:06 -04:00
parent 9a74791115
commit dc674dd31b
478 changed files with 40014 additions and 41409 deletions

View File

@@ -1,33 +1,31 @@
<script lang="ts">
import { page } from "$app/stores";
import { MainFooter } from "$lib/components";
import { Docs } from "$lib/layouts";
import Sidebar from "./Sidebar.svelte";
import { page } from '$app/stores';
import { MainFooter } from '$lib/components';
import { Docs } from '$lib/layouts';
import Sidebar from './Sidebar.svelte';
</script>
<Docs variant="two-side-navs">
<Sidebar />
<div
class="web-article mx-auto flex max-w-[700px] items-center justify-center py-4"
>
<div class="container">
<div class="web-hero" style="--hero-gap:1.25rem;">
<span class="web-badges web-eyebrow !text-white">{$page.status}</span>
<h1 class="web-headline web-u-color-text-primary">
{$page.error?.message ?? "An error has occured"}
</h1>
{#if $page.status === 404}
<p class="web-description">
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.
</p>
{/if}
<a href="/docs" class="web-button is-secondary mt-3 self-center">
<span>Back to docs</span>
</a>
</div>
<Sidebar />
<div class="web-article mx-auto flex max-w-[700px] items-center justify-center py-4">
<div class="container">
<div class="web-hero" style="--hero-gap:1.25rem;">
<span class="web-badges web-eyebrow !text-white">{$page.status}</span>
<h1 class="web-headline web-u-color-text-primary">
{$page.error?.message ?? 'An error has occured'}
</h1>
{#if $page.status === 404}
<p class="web-description">
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.
</p>
{/if}
<a href="/docs" class="web-button is-secondary mt-3 self-center">
<span>Back to docs</span>
</a>
</div>
</div>
</div>
</div>
<MainFooter variant="docs" />
<MainFooter variant="docs" />
</Docs>