import { usePriceModalStore } from "@/store/useProceModalStore"; import { Facebook } from "lucide-react"; const socialLinks = [ { name: "telegram", icon: "✈️", color: "#0088cc" }, { name: "facebook", icon: , color: "#1877F2" }, { name: "odnoklassniki", icon: "ok", color: "#ED7100" }, { name: "vkontakte", icon: "VK", color: "#0077FF" }, { name: "twitter", icon: "𝕏", color: "#1DA1F2" }, { name: "whatsapp", icon: "W", color: "#25D366" }, ]; interface RightSideProps { id: number; title: string; name: string; description: string; statusText: string; statusColor: string; image: string; } export function RightSide({ title, name, description, statusColor, statusText, id, image, }: RightSideProps) { const openModal = usePriceModalStore((state) => state.openModal); const handleGetPrice = () => { openModal({ id: id, name: title, image: image, inStock: true, }); }; return (
{/* Title */}

{title}

{/* Article ID */}

Artikul: {name}

{/* Status Badge */}
{statusText}
{/* description */}

{description}

{/* Price Section */}

17.00$

{/* Action Buttons */}
{/* */} {/* */}
{/* Social Share Icons */}
{socialLinks.map((social) => ( {social.icon} ))}
); }