<?php
// File: /customer/index.php
include 'header.php';
?>
<div class="p-6 md:p-8">
    <h1 class="text-3xl font-bold text-ucf-charcoal mb-6">Customer Dashboard</h1>
    <p class="text-lg text-gray-600">Welcome to your dashboard. Here you can view your recent orders and manage your account details.</p>
    
    <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-8">
        <!-- My Orders Card -->
        <a href="orders.php" class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">
            <div class="flex items-center">
                <div class="bg-ucf-green-light p-4 rounded-full">
                    <i class="fas fa-receipt text-ucf-green-dark text-2xl"></i>
                </div>
                <div class="ml-4">
                    <h2 class="text-2xl font-bold text-ucf-charcoal">My Orders</h2>
                    <p class="text-gray-500">View your order history</p>
                </div>
            </div>
        </a>
        <!-- My Profile Card -->
        <a href="profile.php" class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">
            <div class="flex items-center">
                <div class="bg-blue-100 p-4 rounded-full">
                    <i class="fas fa-user-edit text-blue-600 text-2xl"></i>
                </div>
                <div class="ml-4">
                    <h2 class="text-2xl font-bold text-ucf-charcoal">My Profile</h2>
                    <p class="text-gray-500">Update your personal details</p>
                </div>
            </div>
        </a>
    </div>
</div>
<?php include 'footer.php'; ?>
