<?php
session_start();
    include "../partials/_dbconnect.php";

    if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) {
        header("Location: ../auth/login");
        exit;
    }
?>

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dashboard | Ibrahim Bhat</title>
    
    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="./css/styles.css">
    <!-- Bootstrap Icons -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
    
</head>

<body>
    <!-- Sidebar Navigation -->
    <?php include 'components/nav.php'; ?>

    <!-- Hamburger Menu Button for Mobile -->
    <button class="d-lg-none" id="toggleSidebar">
        <i class="bi bi-list"></i>
    </button>

    <!-- Header -->
    <header class="dashboard-header">
        <div class="d-flex align-items-center justify-content-end w-100">
            <div class="notification-badge me-4">
                <i class="bi bi-bell fs-5"></i>
                <span class="badge">5</span>
            </div>
            <div class="user-profile">
                <img src="../assets/img/profile.jpg" alt="Profile" class="rounded-circle" width="40" height="40"
                    style="cursor: pointer">
                <div class="profile-dropdown">
                    <a href="profile.php" class="dropdown-item">
                        <i class="bi bi-person"></i>
                        Profile
                    </a>
                    <a href="settings.php" class="dropdown-item">
                        <i class="bi bi-gear"></i>
                        Settings
                    </a>
                    <hr class="dropdown-divider">
                    <a href="../auth/logout.php" class="dropdown-item text-danger">
                        <i class="bi bi-box-arrow-right"></i>
                        Logout
                    </a>
                </div>
            </div> 
        </div>
    </header>

    <!-- Main Content -->
    <main class="dashboard-main">
        <div class="container-fluid text-center py-5">
            <h2>🚧 Under Construction 🚧</h2>
            <p class="lead">This section is currently being updated. Please check back later.</p>
        </div>
    </main>

    <!-- Overlay for mobile -->
    <div class="overlay" id="overlay"></div>

    <!-- Scripts -->
    <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
    <script src="./js/script.js"></script>
</body>

</html> 