diff --git a/src/lib/components/AboutPanel.svelte b/src/lib/components/AboutPanel.svelte new file mode 100644 index 0000000..4f240b6 --- /dev/null +++ b/src/lib/components/AboutPanel.svelte @@ -0,0 +1,151 @@ + + +
e.key === "Escape" && onClose()} +> +
e.stopPropagation()} + onkeydown={(e) => e.stopPropagation()} + role="dialog" + aria-labelledby="about-title" + tabindex="-1" + > +
+

About Hikari Desktop

+ +
+ +
+
+

What is Hikari Desktop?

+

+ Hikari Desktop is an AI-powered desktop assistant that brings Claude directly to your + desktop. Built with love using Tauri, Svelte, and Rust for a fast, native experience. +

+
+ +
+

Version

+

+ {appVersion || "Loading..."} +

+ +
+ +
+

Source Code

+ +
+ +
+

Support & Community

+

Found a bug or have a suggestion?

+ +
+ +
+

Built with 💕 by

+ +
+ +
+

License

+

+ This project is open source and available under our license terms. +

+ +
+ +
+

+ Copyright © {new Date().getFullYear()} Naomi Carrigan. All rights reserved. +

+
+
+
+
+ + diff --git a/src/lib/components/HelpPanel.svelte b/src/lib/components/HelpPanel.svelte new file mode 100644 index 0000000..412c646 --- /dev/null +++ b/src/lib/components/HelpPanel.svelte @@ -0,0 +1,155 @@ + + +
e.key === "Escape" && onClose()} +> +
e.stopPropagation()} + onkeydown={(e) => e.stopPropagation()} + role="dialog" + aria-labelledby="help-title" + tabindex="-1" + > +
+

How to Use Hikari Desktop

+ +
+ +
+ {#each sections as section (section.title)} +
+

{section.title}

+
    + {#each section.items as item (item)} +
  • + + {item} +
  • + {/each} +
+
+ {/each} + +
+

+ Need more help? Join our Discord community for support and updates! +

+
+
+
+
+ + diff --git a/src/lib/components/StatusBar.svelte b/src/lib/components/StatusBar.svelte index 5693a00..10c5d54 100644 --- a/src/lib/components/StatusBar.svelte +++ b/src/lib/components/StatusBar.svelte @@ -15,9 +15,12 @@ import type { ConnectionStatus } from "$lib/types/messages"; import { onMount } from "svelte"; import StatsDisplay from "./StatsDisplay.svelte"; + import AboutPanel from "./AboutPanel.svelte"; + import HelpPanel from "./HelpPanel.svelte"; import { achievementProgress } from "$lib/stores/achievements"; const DISCORD_URL = "https://chat.nhcarrigan.com"; + const DONATE_URL = "https://donate.nhcarrigan.com"; let connectionStatus: ConnectionStatus = $state("disconnected"); let workingDirectory = $state(""); @@ -26,6 +29,8 @@ let grantedToolsList: string[] = $state([]); let appVersion = $state(""); let showStats = $state(false); + let showAbout = $state(false); + let showHelp = $state(false); const progress = $derived($achievementProgress); let currentConfig: HikariConfig = $state({ model: null, @@ -241,6 +246,45 @@ /> + + +