import React from 'react';
import { YStack, XStack } from '@tamagui/stacks';
import { SizableText as Text } from '@tamagui/text';
import { Camera, Sparkles, Image as ImageIcon, Users } from 'lucide-react';
import MockupFrame from './MockupFrame';
import { MockupCard, MockupLabel } from './MockupPrimitives';
const rings = [
{ label: 'Capture', icon: },
{ label: 'Prompts', icon: },
{ label: 'Gallery', icon: },
{ label: 'Guests', icon: },
];
export default function MockupHome02StoryRings() {
return (
Morning glow
Tap a ring to jump in.
{rings.map((ring) => (
{ring.icon}
{ring.label}
))}
Story highlights
{[1, 2, 3].map((chip) => (
))}
);
}