import React from 'react'; import { useAuth } from '../contexts/AuthContext'; import { Link } from 'react-router-dom'; const Dashboard: React.FC = () => { const { isAuthenticated, user } = useAuth(); if (!isAuthenticated) { return (

Welcome to TCG Vault

Your complete trading card database with OCR scanning, AI-powered deck building, and real-time pricing.

Get Started
); } return (

Welcome back, {user?.username}!

Here's an overview of your trading card collection.

{/* Quick Stats */}
📚

Collections

0

🎴

Decks

0

🃏

Total Cards

0

💰

Total Value

$0

{/* Quick Actions */}
📸

Scan Cards

Use OCR to quickly add cards to your collection

📚

Manage Collections

Organize and track your card collections

🎴

Build Decks

Create and optimize decks with AI assistance

{/* Recent Activity (placeholder) */}

Recent Activity

No recent activity. Start by scanning some cards or creating a collection!

); }; export default Dashboard;