const socialLinks = [
{
href: 'https://www.instagram.com',
label: 'Instagram',
icon: (
),
},
{
href: 'https://www.linkedin.com',
label: 'LinkedIn',
icon: (
),
},
{
href: 'https://x.com',
label: 'X',
icon: (
),
},
] as const
interface SocialMediaLinksProps {
className?: string
iconClassName?: string
linkClassName?: string
}
export default function SocialMediaLinks({
className = '',
iconClassName = 'h-5 w-5',
linkClassName = 'transition-colors hover:text-[#4274ff]',
}: SocialMediaLinksProps) {
return (
)
}