"use client" export function RecentDevelopments() { const developments = [ { id: 1, title: "European Registrations Plummet Despite EV Boom", summary: "Tesla registrations crashed 23% year-over-year in August across Europe to 14,831 units, while the broader European electric vehicle market surged 26%. European Automobile Manufacturers' Association data shows Tesla's eight-month European registration...", timeAgo: "10 hours ago", type: "negative", avatar: "🇪🇺", }, { id: 2, title: "Musk Acquires Billion-Dollar Stake After Compensation Vote", summary: "CEO Elon Musk purchased $1 billion worth of Tesla stock in mid-September, marking his first such acquisition since 2020. The move follows the board's proposed compensation package potentially worth $900 billion, which could make Musk the world's first...", timeAgo: "4 hours ago", type: "positive", avatar: "💰", }, { id: 3, title: "CFO Taneja Divests Nearly Million Shares Recently", summary: "Tesla CFO Vaibhav Taneja sold shares worth approximately $918,000 in another recent divestment, marking the latest in a series of similar transactions over the past year. The sale occurs ahead of Tesla's November 5 annual shareholder meeting.", timeAgo: "9 hours ago", type: "neutral", avatar: "👤", }, ] return (

Recent Developments

Updated 3 hours ago
{developments.map((item) => (
{item.avatar}
{item.type === "positive" &&
} {item.type === "negative" &&
} {item.type === "neutral" &&
} {item.timeAgo}

{item.title}

{item.summary}

))}
) }