32 lines
794 B
TypeScript
32 lines
794 B
TypeScript
import { type SocialMedia } from "./types";
|
|
|
|
/**
|
|
* Social media profiles
|
|
*/
|
|
export const socials: SocialMedia[] = [
|
|
{
|
|
name: "GitHub",
|
|
url: "https://github.com/justindeal",
|
|
icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/github-dark.svg",
|
|
alt: "GitHub Profile",
|
|
showInFooter: true,
|
|
showInAbout: true
|
|
},
|
|
{
|
|
name: "Gitea",
|
|
url: "https://code.justin.deal/dealjus",
|
|
icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/gitea-dark.svg",
|
|
alt: "Gitea Profile",
|
|
showInFooter: true,
|
|
showInAbout: true
|
|
},
|
|
{
|
|
name: "LinkedIn",
|
|
url: "https://www.linkedin.com/in/justin-deal/",
|
|
icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/linkedin-dark.svg",
|
|
alt: "LinkedIn Profile",
|
|
showInFooter: true,
|
|
showInAbout: true
|
|
}
|
|
];
|