File "dashboard.php"

Full path: /home/fsibplc/public_html/sommilito-bank/admin/dashboard.php
File size: 1.22 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
    include 'admin-header.php';


?>



        <!-- Content -->
        <main class="flex-1 p-6 overflow-auto">

            <h3 class="text-xl font-semibold text-teal-900 mb-3">Dashboard</h3>

            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">

            

                <!-- Example Card -->
                <div class="bg-white rounded-lg shadow p-4 hover:shadow-lg transition">
                    <h2 class="text-teal-900 font-semibold mb-2">Total Users</h2>
                    <p class="text-gray-600 text-lg">1</p>
                </div>

                <div class="bg-white rounded-lg shadow p-4 hover:shadow-lg transition">
                    <h2 class="text-teal-900 font-semibold mb-2">Active Sliders</h2>
                    <p class="text-gray-600 text-lg">45</p>
                </div>

                <div class="bg-white rounded-lg shadow p-4 hover:shadow-lg transition">
                    <h2 class="text-teal-900 font-semibold mb-2">Revenue</h2>
                    <p class="text-gray-600 text-lg">$12,500</p>
                </div>

                <!-- Add more cards/content here -->
            </div>
        </main>
    </div>

</body>

</html>