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 {
title: string;
name: string;
description: string;
statusText: string;
statusColor: string;
}
export function RightSide({
title,
name,
description,
statusColor,
statusText,
}: RightSideProps) {
return (
{/* Title */}
{title}
{/* Article ID */}
{/* Status Badge */}
{statusText}
{/* description */}
{/* Price Section */}
17.00$
{/* Action Buttons */}
{/* */}
{/* */}
{/* Social Share Icons */}
);
}