34 lines
737 B
TypeScript
34 lines
737 B
TypeScript
export interface SocialPlatform {
|
|
name: string;
|
|
url: string;
|
|
icon: string;
|
|
}
|
|
|
|
export const github: SocialPlatform = {
|
|
name: "GitHub",
|
|
url: "https://github.com/encie22",
|
|
icon: "fa7-brands:github"
|
|
};
|
|
|
|
export const imdb: SocialPlatform = {
|
|
name: "IMDb",
|
|
url: "https://www.imdb.com/name/nm7228362/",
|
|
icon: "fa:imdb"
|
|
};
|
|
|
|
export const linkedin: SocialPlatform = {
|
|
name: "LinkedIn",
|
|
url: "https://au.linkedin.com/in/nathan-cummins-38492954",
|
|
icon: "fa7-brands:linkedin"
|
|
};
|
|
|
|
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;
|