share social links
This commit is contained in:
parent
7b8d09a312
commit
143fae9b93
3 changed files with 36 additions and 35 deletions
19
frontend/rabbi_gerzi/src/content/socialLinks.ts
Normal file
19
frontend/rabbi_gerzi/src/content/socialLinks.ts
Normal 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,
|
||||
},
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue