diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro
index fb64c29..c98e5f8 100644
--- a/src/pages/[lang]/index.astro
+++ b/src/pages/[lang]/index.astro
@@ -35,9 +35,15 @@ import { VERSION } from "astro:env/client";
src="/loading">
Version: {VERSION}
+
+ Having problems?
+
+
© Nebula Services 2024
@@ -50,6 +56,7 @@ import { VERSION } from "astro:env/client";
import { defaultStore } from "@utils/storage";
import { Settings } from "@utils/settings";
import { setTransport, SW } from "@utils/serviceWorker";
+import { navigate } from "astro:transitions/client";
type Suggestion = {
phrase: string;
@@ -58,19 +65,29 @@ import { VERSION } from "astro:env/client";
const init = async (): Promise