From ddeefb00443ae26c6f286e60759c8ff7bc286a52 Mon Sep 17 00:00:00 2001 From: Nathan Cummins Date: Mon, 11 Aug 2025 16:32:23 +0930 Subject: [PATCH] Export individual socials --- src/assets/socials.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/assets/socials.ts b/src/assets/socials.ts index 97d282d..9b3ac0f 100644 --- a/src/assets/socials.ts +++ b/src/assets/socials.ts @@ -1,31 +1,33 @@ -interface SocialPlatform { +export interface SocialPlatform { name: string; url: string; icon: string; } -const github: SocialPlatform = { +export const github: SocialPlatform = { name: "GitHub", url: "https://github.com/encie22", icon: "fa7-brands:github" }; -const imdb: SocialPlatform = { +export const imdb: SocialPlatform = { name: "IMDb", url: "https://www.imdb.com/name/nm7228362/", icon: "fa:imdb" }; -const linkedin: SocialPlatform = { +export const linkedin: SocialPlatform = { name: "LinkedIn", url: "https://au.linkedin.com/in/nathan-cummins-38492954", icon: "fa7-brands:linkedin" }; -const bluesky: SocialPlatform = { +export const bluesky: SocialPlatform = { name: "Bluesky", url: "https://bsky.app/profile/nathancummins.au", icon: "fa7-brands:bluesky" }; export const socials: SocialPlatform[] = [imdb, linkedin, github, bluesky]; + +export default socials;