// Social / contact links. export type Social = { label: string; href: string; // Inline SVG path data (24x24 viewBox) so we ship zero icon-font / external requests. icon: string; // External link gets rel=noopener; mailto does not. external?: boolean; }; export const socials: Social[] = [ { // Self-hosted public git — his code, on his own infrastructure (goes live with git.bztmon.com). label: "Source", href: "https://git.bztmon.com/jwright", external: true, icon: "M21.6 11.2 12.8 2.4a1.3 1.3 0 0 0-1.9 0L9 4.3l2.3 2.3a1.6 1.6 0 0 1 2 2L15.6 11a1.6 1.6 0 1 1-1 1l-2.1-2.2v5.6a1.6 1.6 0 1 1-1.3 0V9.8a1.6 1.6 0 0 1-.6-2.1L8.1 5.3l-5.7 5.7a1.3 1.3 0 0 0 0 1.9l8.8 8.8a1.3 1.3 0 0 0 1.9 0l8.5-8.5a1.3 1.3 0 0 0 0-2Z", }, { label: "LinkedIn", href: "https://www.linkedin.com/in/jonathon-w-2697b995", external: true, icon: "M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.35V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28ZM5.34 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14ZM7.12 20.45H3.55V9h3.57v11.45ZM22.22 0H1.77C.8 0 0 .78 0 1.74v20.51C0 23.22.8 24 1.77 24h20.45c.98 0 1.78-.78 1.78-1.75V1.74C24 .78 23.2 0 22.22 0Z", }, { label: "Email", href: "mailto:jonnywright2011@live.com.au", icon: "M2 4h20c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1Zm1.4 2 8.6 6 8.6-6H3.4ZM21 7.87l-8.43 5.9a1 1 0 0 1-1.14 0L3 7.87V18h18V7.87Z", }, ];