All files / src/mock links.js

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54      8x       8x                                                                                            
import * as icons from "simple-icons";
 
 
const linkedinIcon = {
    svg: `<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.85-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667h-3.554V9h3.414v1.561h.049c.477-.9 1.637-1.85 3.367-1.85 3.598 0 4.265 2.368 4.265 5.452v6.289zM5.337 7.433a2.063 2.063 0 1 1 0-4.126 2.063 2.063 0 0 1 0 4.126zM6.814 20.452H3.861V9h2.953v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.723v20.549C0 23.226.792 24 1.771 24h20.451C23.2 24 24 23.226 24 22.272V1.723C24 .774 23.2 0 22.225 0z"/>`,
};
 
export const links = [
    {
        key: "linkedin",
        href: "https://www.linkedin.com/in/ingdanielemasone/",
        icon: linkedinIcon,
        color: "currentColor",
        label: "LinkedIn",
    },
    {
        key: "github",
        href: "https://github.com/DanieleMasone",
        icon: icons.siGithub,
        color: "currentColor",
        label: "GitHub",
        className: "text-[#181717] dark:text-gray-200",
    },
    {
        key: "udemy",
        href: "https://www.udemy.com/user/daniele-masone/",
        icon: icons.siUdemy,
        color: "currentColor",
        label: "Udemy",
    },
    {
        key: "x",
        href: "https://twitter.com/masone_daniele",
        icon: icons.siX,
        color: "currentColor",
        label: "X",
        className: "text-black dark:text-white scale-[0.88]"
    },
    {
        key: "instagram",
        href: "https://www.instagram.com/ing_daniele_masone/",
        icon: icons.siInstagram,
        color: "currentColor",
        label: "Instagram",
    },
    {
        key: "facebook",
        href: "https://www.facebook.com/danieleMasone",
        icon: icons.siFacebook,
        color: "currentColor",
        label: "Facebook",
    }
];