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

@ -2,11 +2,7 @@
import { ref } from 'vue'
import SiteHeader from '@/components/SiteHeader.vue'
import SiteFooter from '@/components/SiteFooter.vue'
interface SocialLink {
label: string
href: string
}
import { socialLinks } from '@/content/socialLinks'
const contactFirstName = ref('')
const contactLastName = ref('')
@ -17,17 +13,6 @@ const contactMessage = ref('')
const newsletterFullName = ref('')
const newsletterEmail = ref('')
const socialLinks: SocialLink[] = [
{
label: 'YouTube',
href: 'https://www.youtube.com/@rabbigerzi',
},
{
label: 'Spotify',
href: 'https://open.spotify.com/show/49H1X9A7KZWAnnIbcoQXQR?si=6253691f23be44ad',
},
]
function submitContact(submitEvent: Event): void {
submitEvent.preventDefault()
contactFirstName.value = ''