import Image from 'next/image'; import { Button } from '@/components/ui/button'; const quickActions = [ { subtitle: 'Create your own ebook', title: 'DPE Publishing Studio', image: '/create.png', button: { label: 'Design Now', link: '#' }, }, { subtitle: 'Unlimited access to', title: '15,000 Fonts', image: '/text.png', button: { label: 'View More', link: '#' }, }, { subtitle: 'Unlimited access to', title: '25,000 Audios', image: '/paint.png', button: { label: 'View More', link: '#' }, }, { subtitle: 'Unlimited access to', title: '175,000 Graphics', image: '/brush.png', button: { label: 'View More', link: '#' }, }, { subtitle: 'Unlimited access to', title: '45,000 Videos', image: '/camera.png', button: { label: 'View More', link: '#' }, }, ]; export default function QuickActions() { return (
{/* Top linear gradient image bar */}
Gradient Bar

DPE

{quickActions.map((action, idx) => (
{action.title}
{action.subtitle}
{action.title}
))}
); }