/** * Landing Section: Showcase * * Alternating left/right product blocks. */ import { ArrowRight } from 'lucide-react' import { ScrollReveal, BrowserMockup, cn } from '../primitives' const SHOWCASE_ITEMS = [ { label: 'Overview', title: 'See everything at a glance', description: 'A clear, organized view of what matters most. Stay on top of your work without the clutter.', image: '', }, { label: 'Workflow', title: 'Work the way you want', description: 'Flexible tools that adapt to your process. Set things up once and let the app handle the rest.', image: '', }, ] export default function ShowcaseSection() { return (
{SHOWCASE_ITEMS.map((item, idx) => { const isReversed = idx % 2 !== 0 return (
{item.label}

{item.title}

{item.description}

) })}
) }