deckhearth/components/LoginCTA.js
Randall Stillwell afb79c57d9 Major Scanner Improvements
🔧 Gemini AI Integration:
- Added Google Gemini API as default OCR service
- Auto-configures from GEMINI_AI_API_KEY environment variable
- Fixed Puter.js authentication issues
- Enhanced OCR settings with connection testing

🎨 Redesigned Scanner Queue:
- New thumbnail + content layout with checkbox overlay
- Smart quantity management (duplicates increment quantity)
- Complete card information display from database
- Two-row action layout (primary/secondary actions)
- Floating bottom toolbar for bulk actions
- Real card images from database

�� Enhanced User Experience:
- Fixed Canvas2D performance warnings
- Better error handling and fallbacks
- Improved responsive design
- Database confirmation indicators
- Professional card scanning workflow

📱 Mobile Ready:
- Optimized layouts for mobile scanning
- Touch-friendly controls and interactions
- Improved visual feedback and status indicators
2025-07-29 14:19:48 -05:00

53 lines
No EOL
2 KiB
JavaScript

import Link from 'next/link';
export default function LoginCTA({ message = "Sign up to create your own collections and more!" }) {
return (
<div className="fixed bottom-6 right-6 z-50">
<div
className="rounded-2xl p-4 shadow-2xl border max-w-sm"
style={{
backgroundColor: 'var(--bg-primary)',
borderColor: 'var(--border)',
backdropFilter: 'blur(10px)'
}}
>
<div className="flex items-start space-x-3">
<div className="flex-shrink-0">
<div className="w-8 h-8 rounded-full flex items-center justify-center" style={{ backgroundColor: 'var(--accent-ember)' }}>
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197m13.5-9a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0z" />
</svg>
</div>
</div>
<div className="flex-1 min-w-0">
<p className="text-sm font-medium mb-2" style={{ color: 'var(--text-primary)' }}>
{message}
</p>
<div className="flex space-x-2">
<Link
href="/signup"
className="px-3 py-1.5 text-xs font-medium rounded-lg transition-all duration-200 hover:opacity-90"
style={{
backgroundColor: 'var(--accent-ember)',
color: 'white'
}}
>
Sign Up Free
</Link>
<Link
href="/login"
className="px-3 py-1.5 text-xs font-medium rounded-lg border transition-all duration-200 hover:opacity-80"
style={{
color: 'var(--text-primary)',
borderColor: 'var(--border)'
}}
>
Sign In
</Link>
</div>
</div>
</div>
</div>
</div>
);
}