Skip to content

Commit

Permalink
Prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
sofiaritz committed Jan 4, 2024
1 parent 4470969 commit 213d714
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
</Route>
{/if}
<Route>
<h1 class="text-5xl mb-3">Page not found</h1>
<span class=text-xl>Go back to <Link to="/">home</Link></span>
<h1 class="mb-3 text-5xl">Page not found</h1>
<span class="text-xl">Go back to <Link to="/">home</Link></span>
</Route>
</main>
<footer
Expand All @@ -60,9 +60,9 @@
Powered by <a href="https://github.com/marcua/ayb">ayb</a> and
<a href="https://github.com/sofiaritz/aybWeb">aybWeb</a>
{#if AYB_HOST != null}
· Connected to
· Connected to
{#if AYB_HOST_DOCS != null}
<a href="{AYB_HOST_DOCS}">{new URL(AYB_HOST).hostname}</a>
<a href={AYB_HOST_DOCS}>{new URL(AYB_HOST).hostname}</a>
{:else}
{new URL(AYB_HOST).hostname}
{/if}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ const toBool = (input: string) => input === "1" || input === "true" || input ===
export const AYB_WEB_VERSION = "0.0.0-alpha"
export const AYB_HOST = import.meta.env["VITE_AYB_HOST"] || undefined
export const AYB_HOST_DOCS = import.meta.env["VITE_AYB_HOST_DOCS"] || undefined
export const AYB_DISABLE_SUPPORT = toBool(import.meta.env["VITE_AYB_DISABLE_SUPPORT"])
export const AYB_DISABLE_SUPPORT = toBool(import.meta.env["VITE_AYB_DISABLE_SUPPORT"])

0 comments on commit 213d714

Please sign in to comment.