From c28ac2bdfe78b6313de524d6a65553420d325fa7 Mon Sep 17 00:00:00 2001 From: Owais Jamil Date: Tue, 9 Jun 2026 16:08:24 -0500 Subject: [PATCH] fix: redirects --- src/routes/+layout.svelte | 18 ++++++++++++++++-- static/_redirects | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index a7af5c4..2da1075 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -51,6 +51,9 @@ const aboutWindow = $derived(windowManager.getWindow('about-computer')); const geditWindow = $derived(windowManager.getWindow('gedit')); const documentViewerWindow = $derived(windowManager.getWindow('document-viewer')); + const siteTitle = 'Intrepid Ibex ATProto Browser'; + const siteDescription = 'Browse public AT Protocol repositories like it is 2008, inside an Ubuntu 8.10-inspired GNOME desktop.'; + const opengraphImage = '/og.png'; const shortcuts = $derived([ { @@ -214,8 +217,19 @@ - Intrepid Ibex ATProto Browser - + {siteTitle} + + + + + + + + + + + + {#if bootStatus !== 'ready'} diff --git a/static/_redirects b/static/_redirects index 952ebf0..7797f7c 100644 --- a/static/_redirects +++ b/static/_redirects @@ -1 +1 @@ -/* / 200 +/* /index.html 200 -- 2.51.2