Export individual socials

This commit is contained in:
2025-08-11 16:32:23 +09:30
parent b9d6b959dd
commit ddeefb0044

View File

@@ -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;