import React from 'react';
import { YStack, XStack } from '@tamagui/stacks';
import { SizableText as Text } from '@tamagui/text';
import { Sun, CloudSun, MoonStar } from 'lucide-react';
import MockupFrame from './MockupFrame';
import { MockupCard, MockupLabel, MockupTile } from './MockupPrimitives';
const sections = [
{
key: 'morning',
title: 'Morning glow',
icon: ,
},
{
key: 'afternoon',
title: 'Afternoon energy',
icon: ,
},
{
key: 'night',
title: 'Night sparkle',
icon: ,
},
];
export default function Mockup08Daybook() {
return (
Today in moments
Group memories by vibe, not just time.
{sections.map((section) => (
{section.icon}
{section.title}
{[1, 2, 3].map((tile) => (
))}
))}
);
}