diff --git a/astro.config.mjs b/astro.config.mjs index 17e5128..7c42a34 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -53,6 +53,9 @@ export default defineConfig({ "docker", "github", "linkedin", + "kotlin", + "swift", + "flutter" ], }, }), diff --git a/package.json b/package.json index bfc593f..ec778f5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "atridotdad", "type": "module", - "version": "1.1.0", + "version": "1.1.1", "scripts": { "dev": "astro dev", "build": "astro build", diff --git a/src/components/SocialLinks.astro b/src/components/SocialLinks.astro index b291a4c..4f30cd5 100644 --- a/src/components/SocialLinks.astro +++ b/src/components/SocialLinks.astro @@ -1,14 +1,9 @@ --- import { Icon } from "astro-icon/components"; import { socialLinks } from "../config/data"; - -// Helper function to check if icon is a string (Astro icon) -function isAstroIcon(icon: any): icon is string { - return typeof icon === "string"; -} --- -