'use client'; interface SocialShareButtonsProps { url: string; title: string; } export function SocialShareButtons({ url, title }: SocialShareButtonsProps) { const encodedUrl = encodeURIComponent(url); const encodedTitle = encodeURIComponent(title); const twitterUrl = `https://twitter.com/intent/tweet?text=${encodedTitle}&url=${encodedUrl}`; const facebookUrl = `https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`; return (
); }