import React from 'react'; import { YStack, XStack } from '@tamagui/stacks'; import { SizableText as Text } from '@tamagui/text'; import { Clock, Image as ImageIcon } from 'lucide-react'; import MockupFrame from './MockupFrame'; import { MockupCard, MockupLabel } from './MockupPrimitives'; const timeline = [ { time: '18:40', title: 'Sparkler exit', caption: '12 new uploads' }, { time: '18:22', title: 'First dance', caption: '7 moments added' }, { time: '18:10', title: 'Toast round', caption: '5 guest favorites' }, { time: '17:55', title: 'Arrival glow', caption: '4 candid shots' }, ]; export default function Mockup04TimelineStream() { return ( Live timeline Moments grouped by when they happened. {timeline.map((item, index) => ( {item.time} {item.title} {item.caption} {[1, 2, 3].map((tile) => ( ))} ))} ); }