import React from 'react'; import { Link } from 'react-router-dom'; import { Button } from '@/components/ui/button'; import { Plus, Search, Star } from 'lucide-react'; import Layout from '@/components/layout/layout'; import { mockPhotocards, mockGroups } from '@/data/mockData'; import PhotocardGrid from '@/components/photocard/photocard-grid'; import { Badge } from '@/components/ui/badge'; const Index = () => { const featuredPhotocards = mockPhotocards.slice(0, 5); return ( {/* Hero Section */}
New Collection Tracking

Your K-pop Photocard Collection

Track, trade, and showcase your photocard collection with our beautiful, minimalist dashboard.

{mockPhotocards.slice(0, 4).map((photocard, index) => (
{photocard.member}
))}
{/* Groups */}

Popular Groups

Organize your collection by artist

{mockGroups.map((group) => (
{group.logoUrl ? ( {group.name} ) : (
{group.name}
)}

{group.name}

{group.members.length} members

))}
{/* Featured Cards */}

Featured Photocards

Discover some of the most popular photocards

{/* Call to Action */}

Start Tracking Your Collection Today

Keep a detailed record of your K-pop photocards, manage trades, and showcase your collection with our beautiful interface.

); }; export default Index;