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 } from 'lucide-react'; import MockupFrame from './MockupFrame'; import { MockupCard, MockupLabel } from './MockupPrimitives'; const mockups = [ { id: '1', title: 'Capture Orbit', description: 'Full-screen capture hub with orbiting actions.' }, { id: '2', title: 'Gallery Mosaic', description: 'Image-first grid with filters and fast scan.' }, { id: '3', title: 'Prompt Quest', description: 'Prompt hero with progress and task ladder.' }, { id: '4', title: 'Timeline Stream', description: 'Chronological feed with time markers.' }, { id: '5', title: 'Compass Hub', description: 'Quadrant navigation around a central action.' }, { id: '6', title: 'Split Capture', description: 'Camera preview plus quick tools and queue.' }, { id: '7', title: 'Swipe Deck', description: 'Stacked cards for rapid review.' }, { id: '8', title: 'Daybook', description: 'Morning/afternoon/night memory sections.' }, { id: '9', title: 'Checklist Flow', description: 'Tasks checklist paired with gallery progress.' }, { id: '10', title: 'Spotlight Reel', description: 'Live highlight reel with action strip.' }, ]; export default function MockupsIndexScreen() { const navigate = useNavigate(); return ( Home concepts Explore 10 start screen ideas. {mockups.map((mockup) => ( {mockup.title} {mockup.description} ))} ); }