diff --git a/.changeset/spicy-pumpkins-vanish.md b/.changeset/spicy-pumpkins-vanish.md new file mode 100644 index 0000000..c8e5f95 --- /dev/null +++ b/.changeset/spicy-pumpkins-vanish.md @@ -0,0 +1,5 @@ +--- +"documentation": patch +--- + +Added Github Repo Icon, Authors Web Icon diff --git a/apps/documentation/package.json b/apps/documentation/package.json index 172074b..91ad88b 100644 --- a/apps/documentation/package.json +++ b/apps/documentation/package.json @@ -32,7 +32,8 @@ "vite": "^4.0.0" }, "dependencies": { - "@gzim/svelte-actions": "workspace:*" + "@gzim/svelte-actions": "workspace:*", + "@iconify/svelte": "3.1.6" }, "type": "module" } diff --git a/apps/documentation/src/routes/+layout.svelte b/apps/documentation/src/routes/+layout.svelte index e8af3ee..18fb6f8 100644 --- a/apps/documentation/src/routes/+layout.svelte +++ b/apps/documentation/src/routes/+layout.svelte @@ -9,20 +9,19 @@ import { base } from '$app/paths'; import { Button, KitDocs, KitDocsLayout, createSidebarContext } from '@svelteness/kit-docs'; + import Icon from '@iconify/svelte'; /** @type {import('./$types').LayoutData} */ export let data; + const GITHUB_LINK = 'https://github.com/gzimbron/svelte-actions'; + const ZIMBRON_LINK = 'https://zimbron.dev'; + $: ({ meta, sidebar } = data); /** @type {import('@svelteness/kit-docs').NavbarConfig} */ const navbar = { - links: [ - { - title: 'Github', - slug: 'https://github.com/gzimbron/svelte-actions' - } - ] + links: [] }; const { activeCategory } = createSidebarContext(sidebar); @@ -49,6 +48,27 @@ +
+