From c672495a5ffff9069b26089ed26a78352825ed55 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 14 Nov 2024 01:52:10 +0000 Subject: [PATCH] Adjust menu order --- src/routes/more/+page.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/more/+page.svelte b/src/routes/more/+page.svelte index a97e2a5..5275d3e 100644 --- a/src/routes/more/+page.svelte +++ b/src/routes/more/+page.svelte @@ -16,11 +16,11 @@ const title = "More"; const links = [ - { title: "Your Data", path: "/more/data", icon: IconUser }, - { title: "Registration", path: "/more/reg", icon: IconUserPlus }, + { title: "Help", path: "https://docs.owlboard.info", icon: IconHelp }, { title: "Settings", path: "/more/settings", icon: IconSettings }, - { title: "Help", path: "/more/help", icon: IconHelp }, + { title: "Your Data", path: "/more/data", icon: IconUser }, { title: "About", path: "/more/about", icon: IconInfoCircle }, + { title: "Registration", path: "/more/reg", icon: IconUserPlus }, { title: "Location Reference Code Lookup", path: "/more/corpus", icon: IconLocation }, { title: "Reason Code Lookup", path: "/more/reasons", icon: IconMessageCode }, { title: "Privacy Policy", path: "/more/privacy", icon: IconSpy },