export default function SocialButtons() {
return (
{/* Bouton Facebook */}
href="https://www.facebook.com/profile.php?id=61577274329808"
target="_blank"
rel="noopener noreferrer"
className="w-9 h-9 rounded-full bg-[#8B5CF6] hover:bg-[#7C3AED] flex items-center justify-center transition-all duration-200 shadow-sm hover:shadow-md"
aria-label="Facebook"
>
{/* Bouton TikTok */}
href="https://www.tiktok.com/@otakupop62?lang=fr"
target="_blank"
rel="noopener noreferrer"
className="w-9 h-9 rounded-full bg-[#8B5CF6] hover:bg-[#7C3AED] flex items-center justify-center transition-all duration-200 shadow-sm hover:shadow-md"
aria-label="TikTok"
>
);
}