justin.deal/src/lib/socials.ts
Justin Deal 0e5c402bc1
All checks were successful
Build and Deploy / build (push) Successful in 39s
Abstract Socials into list to make it easy to add more
2025-05-03 16:07:12 -07:00

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
}
];