const links = [ { label: "LinkedIn", url: "https://www.linkedin.com/in/juntekim", icon: "💼", color: "bg-blue-600 hover:bg-blue-700", }, { label: "YouTube — The Pragmatic Automator", url: "https://www.youtube.com/@juntekim", icon: "▶️", color: "bg-red-600 hover:bg-red-700", }, { label: "GitHub", url: "https://github.com/kimjunte", icon: "🐙", color: "bg-zinc-800 hover:bg-zinc-700", }, { label: "My Self-Hosted Stack", url: "/SelfHosted", icon: "🖥️", color: "bg-zinc-700 hover:bg-zinc-600", }, ]; export default function About() { return (

Junte Kim

Builder · Automator · Homelab Tinkerer

{links.map((link) => ( {link.icon} {link.label} ))}
); }