refactor(homepage): merge flashcard display with create button section

Combine the interactive flashcards demonstration and the "Create
Flashcards" call-to-action into a single unified section. The card
throwing area, feature highlights, and CTA button are now part of
one cohesive pane instead of two separate sections.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-10-20 18:11:05 -05:00
parent 074488349a
commit 3cf4f92643

View File

@@ -567,116 +567,95 @@ export default function HomePage() {
</p> </p>
</div> </div>
{/* Interactive Flashcards Display */} {/* Combined interactive display and CTA */}
<div <div
className={css({ className={css({
bg: 'rgba(0, 0, 0, 0.4)',
rounded: 'xl',
p: { base: '6', md: '8' },
border: '1px solid',
borderColor: 'gray.700',
shadow: 'lg',
maxW: '1200px', maxW: '1200px',
mx: 'auto', mx: 'auto',
mb: '8',
})} })}
> >
<InteractiveFlashcards /> {/* Interactive Flashcards Display */}
</div> <div className={css({ mb: '8' })}>
<InteractiveFlashcards />
</div>
{/* Features and CTA */} {/* Features */}
<Link <div className={grid({ columns: { base: 1, md: 3 }, gap: '4', mb: '6' })}>
href="/create" {[
className={css({ {
display: 'block', icon: '📄',
transition: 'all 0.3s ease', title: 'Multiple Formats',
_hover: { desc: 'PDF, PNG, SVG, HTML',
transform: 'translateY(-4px)',
},
})}
>
<div
className={css({
bg: 'rgba(0, 0, 0, 0.4)',
rounded: 'xl',
p: { base: '6', md: '8' },
border: '1px solid',
borderColor: 'gray.700',
shadow: 'lg',
maxW: '1200px',
mx: 'auto',
transition: 'all 0.3s ease',
_hover: {
borderColor: 'blue.500',
shadow: '0 20px 40px rgba(59, 130, 246, 0.2)',
}, },
})} {
> icon: '🎨',
{/* Features */} title: 'Customizable',
<div className={grid({ columns: { base: 1, md: 3 }, gap: '4', mb: '6' })}> desc: 'Bead shapes, colors, layouts',
{[ },
{ {
icon: '📄', icon: '📐',
title: 'Multiple Formats', title: 'All Paper Sizes',
desc: 'PDF, PNG, SVG, HTML', desc: 'A3, A4, A5, US Letter',
}, },
{ ].map((feature, i) => (
icon: '🎨',
title: 'Customizable',
desc: 'Bead shapes, colors, layouts',
},
{
icon: '📐',
title: 'All Paper Sizes',
desc: 'A3, A4, A5, US Letter',
},
].map((feature, i) => (
<div
key={i}
className={css({
textAlign: 'center',
p: '4',
rounded: 'lg',
bg: 'rgba(255, 255, 255, 0.05)',
})}
>
<div className={css({ fontSize: '2xl', mb: '2' })}>{feature.icon}</div>
<div
className={css({
fontSize: 'sm',
fontWeight: 'semibold',
color: 'white',
mb: '1',
})}
>
{feature.title}
</div>
<div className={css({ fontSize: 'xs', color: 'gray.400' })}>
{feature.desc}
</div>
</div>
))}
</div>
{/* CTA Button */}
<div className={css({ textAlign: 'center' })}>
<div <div
key={i}
className={css({ className={css({
display: 'inline-flex', textAlign: 'center',
alignItems: 'center', p: '4',
gap: '2',
bg: 'blue.600',
color: 'white',
px: '6',
py: '3',
rounded: 'lg', rounded: 'lg',
fontWeight: 'semibold', bg: 'rgba(255, 255, 255, 0.05)',
transition: 'all 0.2s',
_hover: {
bg: 'blue.500',
},
})} })}
> >
<span>Create Flashcards</span> <div className={css({ fontSize: '2xl', mb: '2' })}>{feature.icon}</div>
<span>→</span> <div
className={css({
fontSize: 'sm',
fontWeight: 'semibold',
color: 'white',
mb: '1',
})}
>
{feature.title}
</div>
<div className={css({ fontSize: 'xs', color: 'gray.400' })}>
{feature.desc}
</div>
</div> </div>
</div> ))}
</div> </div>
</Link>
{/* CTA Button */}
<div className={css({ textAlign: 'center' })}>
<Link
href="/create"
className={css({
display: 'inline-flex',
alignItems: 'center',
gap: '2',
bg: 'blue.600',
color: 'white',
px: '6',
py: '3',
rounded: 'lg',
fontWeight: 'semibold',
transition: 'all 0.2s',
_hover: {
bg: 'blue.500',
},
})}
>
<span>Create Flashcards</span>
<span>→</span>
</Link>
</div>
</div>
</section> </section>
</div> </div>
</div> </div>