Skip to content

Commit f92e772

Browse files
committed
Add changelog
1 parent 1cbf4e4 commit f92e772

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

sites/docs/src/routes/_NavMenu.svelte

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { NavItem } from 'svelte-ux';
33
44
import { page } from '$app/stores';
5-
import { mdiHome } from '@mdi/js';
5+
import { mdiFormatListBulleted, mdiHome } from '@mdi/js';
66
77
const actions = [
88
'dataBackground',
@@ -45,6 +45,14 @@
4545

4646
<NavItem text="Introduction" icon={mdiHome} currentUrl={$page.url} path="/" />
4747

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+
4856
<h1>svelte-actions</h1>
4957
{#each actions as item}
5058
<NavItem text={item} currentUrl={$page.url} path="/docs/svelte-actions/{item}" />

0 commit comments

Comments
 (0)