diff --git a/src/components/Favicons.astro b/src/components/Favicons.astro
index 171bbc6..1b87d25 100644
--- a/src/components/Favicons.astro
+++ b/src/components/Favicons.astro
@@ -1,10 +1,8 @@
---
import favIcon from '~/assets/favicons/fav.ico';
import favIconSvg from '~/assets/favicons/fav.webp';
-import appleTouchIcon from '~/assets/favicons/apple-touch-icon.png';
---
-
diff --git a/src/navigation.ts b/src/navigation.ts
index 42105c8..85f5f0e 100644
--- a/src/navigation.ts
+++ b/src/navigation.ts
@@ -1,4 +1,4 @@
-import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
+import { getPermalink, getAsset } from './utils/permalinks';
export const headerData = {
links: [
@@ -8,9 +8,9 @@ export const headerData = {
},
{ text: 'About', href: getPermalink('/#about')},
{ text: 'Resume', href: getPermalink('/#resume') },
+ { text: 'Skills', href: getPermalink('//#skills') },
{ text: 'Porfolio', href: getPermalink('/#porfolio') },
{ text: 'Blog', href: getPermalink('/blog') },
-
]
};