'relevantreflex.shop', 'site_description' => 'Panel Management System' ]; // Check if user is logged in (this will be expanded later) $isLoggedIn = isset($_SESSION['user_id']); // For demo purposes, we'll show the dashboard without authentication // In production, uncomment the lines below: /* if (!$isLoggedIn) { header('Location: login.php'); exit; } */ // Include header include_once 'includes/header.php'; // Include dashboard content include_once 'content/dashboard.php'; // Include footer include_once 'includes/footer.php'; ?>