diff --git a/src/utils/socialLinks.ts b/src/utils/socialLinks.ts new file mode 100644 index 0000000..3851b1c --- /dev/null +++ b/src/utils/socialLinks.ts @@ -0,0 +1,70 @@ +const socialLinks = [ + { + name: "Github", + href: "https://github.com/satnaing", + active: true, + icon: ` + + + `, + }, + { + name: "Facebook", + href: "https://www.facebook.com/satnaing.dev", + active: true, + icon: ` + + + `, + }, + { + name: "Instagram", + href: "https://www.instagram.com/satnaing.dev/", + active: true, + icon: ` + + + + + `, + }, + { + name: "Linkedin", + href: "https://linkedin.com/satnaing.dev", + active: true, + icon: ` + + + + + + + `, + }, +]; + +export default socialLinks;