Export individual socials
This commit is contained in:
@@ -1,31 +1,33 @@
|
|||||||
interface SocialPlatform {
|
export interface SocialPlatform {
|
||||||
name: string;
|
name: string;
|
||||||
url: string;
|
url: string;
|
||||||
icon: string;
|
icon: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const github: SocialPlatform = {
|
export const github: SocialPlatform = {
|
||||||
name: "GitHub",
|
name: "GitHub",
|
||||||
url: "https://github.com/encie22",
|
url: "https://github.com/encie22",
|
||||||
icon: "fa7-brands:github"
|
icon: "fa7-brands:github"
|
||||||
};
|
};
|
||||||
|
|
||||||
const imdb: SocialPlatform = {
|
export const imdb: SocialPlatform = {
|
||||||
name: "IMDb",
|
name: "IMDb",
|
||||||
url: "https://www.imdb.com/name/nm7228362/",
|
url: "https://www.imdb.com/name/nm7228362/",
|
||||||
icon: "fa:imdb"
|
icon: "fa:imdb"
|
||||||
};
|
};
|
||||||
|
|
||||||
const linkedin: SocialPlatform = {
|
export const linkedin: SocialPlatform = {
|
||||||
name: "LinkedIn",
|
name: "LinkedIn",
|
||||||
url: "https://au.linkedin.com/in/nathan-cummins-38492954",
|
url: "https://au.linkedin.com/in/nathan-cummins-38492954",
|
||||||
icon: "fa7-brands:linkedin"
|
icon: "fa7-brands:linkedin"
|
||||||
};
|
};
|
||||||
|
|
||||||
const bluesky: SocialPlatform = {
|
export const bluesky: SocialPlatform = {
|
||||||
name: "Bluesky",
|
name: "Bluesky",
|
||||||
url: "https://bsky.app/profile/nathancummins.au",
|
url: "https://bsky.app/profile/nathancummins.au",
|
||||||
icon: "fa7-brands:bluesky"
|
icon: "fa7-brands:bluesky"
|
||||||
};
|
};
|
||||||
|
|
||||||
export const socials: SocialPlatform[] = [imdb, linkedin, github, bluesky];
|
export const socials: SocialPlatform[] = [imdb, linkedin, github, bluesky];
|
||||||
|
|
||||||
|
export default socials;
|
||||||
|
Reference in New Issue
Block a user