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