const placeholderEvents = [ { date: '2022-10-01', headline: 'NVIDIA releases new AI-powered graphics card', description: 'NVIDIA unveils the latest graphics card infused with AI capabilities, revolutionizing gaming and rendering experiences.' } ] export const EventsSkeleton = () => { return (
{placeholderEvents.map(event => (
{event.date}
{event.headline}
{event.description.slice(0, 70)}...
))}
) }