We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cbf4e4 commit f92e772Copy full SHA for f92e772
sites/docs/src/routes/_NavMenu.svelte
@@ -2,7 +2,7 @@
2
import { NavItem } from 'svelte-ux';
3
4
import { page } from '$app/stores';
5
- import { mdiHome } from '@mdi/js';
+ import { mdiFormatListBulleted, mdiHome } from '@mdi/js';
6
7
const actions = [
8
'dataBackground',
@@ -45,6 +45,14 @@
45
46
<NavItem text="Introduction" icon={mdiHome} currentUrl={$page.url} path="/" />
47
48
+<NavItem
49
+ text="Changelog"
50
+ icon={mdiFormatListBulleted}
51
+ currentUrl={$page.url}
52
+ path="https://github.com/techniq/layerstack/releases"
53
+ target="_blank"
54
+/>
55
+
56
<h1>svelte-actions</h1>
57
{#each actions as item}
58
<NavItem text={item} currentUrl={$page.url} path="/docs/svelte-actions/{item}" />
0 commit comments