diff --git a/src/lib/ToolBar.svelte b/src/lib/ToolBar.svelte index f990dde..f7ba870 100644 --- a/src/lib/ToolBar.svelte +++ b/src/lib/ToolBar.svelte @@ -6,7 +6,8 @@ forward: '/icons/rightarrow.png', play: '/icons/speaker.png', search: '/icons/internet.png', - globe: '/icons/github-white.svg' + globe: '/icons/github-white.svg', + computer: '/icons/computer.png', }; let history: string[] = $state([]); @@ -72,6 +73,11 @@ Search Search + + + Settings + Settings +
@@ -105,6 +111,7 @@ cursor: pointer; color: light-dark(#222, #ddd); text-shadow: none; + text-decoration: none; } .toolbar-button:hover { diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte new file mode 100644 index 0000000..fa3ca59 --- /dev/null +++ b/src/routes/settings/+page.svelte @@ -0,0 +1,17 @@ +
+

Settings

+
+
+
+
+
+ + diff --git a/static/icons/computer.png b/static/icons/computer.png new file mode 100644 index 0000000..b67c281 Binary files /dev/null and b/static/icons/computer.png differ