"use client"; import { motion } from "framer-motion"; import type { ReactNode } from "react"; type Social = { label: string; href: string; icon: ReactNode; }; const socials: Social[] = [ { label: "Twitter / X", href: "#", icon: ( ), }, { label: "Discord", href: "#", icon: ( ), }, { label: "YouTube", href: "#", icon: ( ), }, { label: "Steam", href: "#", icon: ( ), }, ]; export function SocialLinks() { return (