import Image from "next/image"; /** * External social profile link configurations */ const socialLinks = [ { name: "LinkedIn", href: "https://linkedin.com/in/andre-kempf", icon: "/assets/icons/linkedin.svg", iconClass: "", }, { name: "Git (Self-Hosted)", href: "https://git.andre-kempf.com/Chneemann", icon: "/assets/icons/forgejo.svg", iconClass: "p-0.75", }, { name: "GitHub (Legacy)", href: "https://github.com/chneemann", icon: "/assets/icons/github.svg", iconClass: "", }, ]; /** * Renders a row of social media profile links with icons and labels */ export default function SocialLinks() { return (
{socialLinks.map((link) => (
{link.name}
{link.name}
))}
); }