Contact Joe

Virtual Business Card .business-card { max-width: 350px; margin: 20px auto; text-align: center; font-family: Arial, sans-serif; padding: 20px; border: 1px solid #ddd; border-radius: 10px; } .business-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; } .add-contact-btn { display: inline-block; margin-top: 15px; padding: 12px 20px; background: #0078d4; color: white; text-decoration: none; border-radius: 5px; }
Profile Photo

Joe Slaughter

Email: joe@Layer1Holdings.com

Phone: (701) 610-3058

Add Contact
function downloadVCard() { const vcard = `BEGIN:VCARD VERSION:3.0 N:Slaughter;Joe;;; FN:Joe Slaughter EMAIL;TYPE=WORK:joe@Layer1Holdings.com TEL;TYPE=CELL:+1-701-610-3058 PHOTO;VALUE=URI:https://layer1holdings.com/wp-content/uploads/2026/06/51a17-cropped-logo_layer1_icon.jpg END:VCARD`; const blob = new Blob([vcard], { type: ‘text/vcard;charset=utf-8’ }); const link = document.createElement(‘a’); link.href = URL.createObjectURL(blob); link.download = ‘Joe_Slaughter.vcf’; document.body.appendChild(link); link.click(); document.body.removeChild(link); }