share social links

This commit is contained in:
Yisroel Baum 2026-06-14 22:12:49 +03:00
parent 7b8d09a312
commit 143fae9b93
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 36 additions and 35 deletions

View file

@ -0,0 +1,19 @@
export type SocialLinkLabel = 'YouTube' | 'Spotify'
export interface SocialLink {
label: SocialLinkLabel
href: string
}
const spotifyShowPath = '49H1X9A7KZWAnnIbcoQXQR?si=6253691f23be44ad'
export const socialLinks: SocialLink[] = [
{
label: 'YouTube',
href: 'https://www.youtube.com/@rabbigerzi',
},
{
label: 'Spotify',
href: 'https://open.spotify.com/show/' + spotifyShowPath,
},
]