import React, { useState } from 'react'; import { Camera, Mic, Share2, MessageCircle, PlayCircle, UserPlus, Hash, Upload, Linkedin, Instagram } from 'lucide-react'; const ClickActionScorecard = () => { const [activeTab, setActiveTab] = useState('score'); const [isRecording, setIsRecording] = useState(false); const [contact, setContact] = useState({ name: '', role: '', company: '', email: '', notes: '' }); const [mediaFiles, setMediaFiles] = useState({ photos: [], voiceNotes: [] }); const generateHashtags = () => { const baseHashtags = ['ClickAction', 'ConferencePenQuest']; // Add dynamic hashtags based on content return [...baseHashtags].join(' #'); }; return (
{/* Navigation Tabs */}
{/* Media Capture Section */} {activeTab === 'media' && (
{mediaFiles.photos.map((photo, index) => (
))}
{mediaFiles.voiceNotes.map((note, index) => (
Voice Note {index + 1}
))}
)} {/* Contact Information Section */} {activeTab === 'contact' && (

Booth Contact

setContact({...contact, name: e.target.value})} /> setContact({...contact, role: e.target.value})} /> setContact({...contact, email: e.target.value})} />

Thanks for your interest! Let's talk soon.

bottom of page