import React from 'react'; import { useNavigate } from 'react-router-dom'; import { YStack, XStack } from '@tamagui/stacks'; import { SizableText as Text } from '@tamagui/text'; import { Button } from '@tamagui/button'; import { ArrowRight, Home } from 'lucide-react'; import MockupFrame from './MockupFrame'; import { MockupCard, MockupLabel } from './MockupPrimitives'; const mockups = [ { id: '1', title: 'Pulse Hero', description: 'Live stats + big capture call-to-action.' }, { id: '2', title: 'Story Rings', description: 'Circular quick actions with story chips.' }, { id: '3', title: 'Live Stream', description: 'Highlight reel + action strip.' }, { id: '4', title: 'Task Sprint', description: 'Prompt ladder + progress meter.' }, { id: '5', title: 'Gallery First', description: 'Grid preview + quick filters.' }, { id: '6', title: 'Calm Focus', description: 'Minimal home with one primary action.' }, { id: '7', title: 'Moment Stack', description: 'Stacked cards for rapid capture.' }, { id: '8', title: 'Countdown Stage', description: 'Event timing + live show entry.' }, { id: '9', title: 'Share Hub', description: 'Invite + QR + guest sharing tools.' }, { id: '10', title: 'Moodboard', description: 'Palette + prompts to set the vibe.' }, ]; export default function MockupsHomeIndexScreen() { const navigate = useNavigate(); return ( Start screen concepts Pick one as the north star for v2. {mockups.map((mockup) => ( {mockup.title} {mockup.description} ))} ); }