import React from 'react'; import { YStack, XStack } from '@tamagui/stacks'; import { SizableText as Text } from '@tamagui/text'; import { CheckCircle2, Circle, ListChecks } from 'lucide-react'; import MockupFrame from './MockupFrame'; import { MockupCard, MockupLabel, MockupTile } from './MockupPrimitives'; const tasks = [ { id: 1, label: 'Capture the first toast', done: true }, { id: 2, label: 'Find the loudest laugh', done: false }, { id: 3, label: 'Snap a detail shot', done: false }, { id: 4, label: 'Find the dance duo', done: true }, ]; export default function Mockup09ChecklistFlow() { return ( Today’s checklist Complete tasks to unlock more prompts. {tasks.map((task) => ( {task.done ? ( ) : ( )} {task.label} ))} Progress gallery {[1, 2, 3, 4].map((tile) => ( ))} ); }