import React from 'react' const baseCard = 'group rounded-xl border border-gray-700 bg-gray-800 p-4 shadow-lg transition hover:scale-[1.02] hover:border-cyan-500/40' const actions = [ { key: 'upload-artwork', label: 'Upload Artwork', href: '/upload', icon: 'fa-solid fa-cloud-arrow-up', description: 'Publish a new piece to your portfolio.', }, { key: 'write-story', label: 'Write Story', href: '/creator/stories/create', icon: 'fa-solid fa-pen-nib', description: 'Create a story, tutorial, or showcase.', }, { key: 'edit-profile', label: 'Edit Profile', href: '/settings/profile', icon: 'fa-solid fa-user-gear', description: 'Update your profile details and links.', }, { key: 'notifications', label: 'View Notifications', href: '/messages', icon: 'fa-solid fa-bell', description: 'Catch up with mentions and updates.', }, ] export default function QuickActions({ isCreator }) { return (

Quick Actions

{isCreator ? 'Creator mode' : 'User mode'}
{actions.map((action) => (