30 lines
934 B
PHP
30 lines
934 B
PHP
<?php
|
|
// views/dashboard.php
|
|
require_once("../core/auth.php");
|
|
require_once("../config/db.php");
|
|
require_once("../core/utils.php");
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="th">
|
|
<head>
|
|
<?php require_once("../components/head.php"); ?>
|
|
</head>
|
|
<body class="bg-gradient-to-br from-emerald-50 to-emerald-100 text-slate-800 font-sans antialiased min-h-screen flex">
|
|
|
|
<?php require_once("../components/layout_sidebar.php"); ?>
|
|
|
|
<main class="flex-1 flex flex-col min-w-0">
|
|
<?php require_once("../components/layout_topbar.php"); ?>
|
|
|
|
<div class="p-4 md:p-8 lg:p-10 flex-1 overflow-y-auto">
|
|
<div class="max-w-7xl mx-auto">
|
|
<?php require_once("../components/card_patient_stats.php"); ?>
|
|
</div>
|
|
</div>
|
|
<?php require_once("../components/layout_footer.php"); ?>
|
|
</main>
|
|
|
|
<script src="../assets/js/micro-interactions.js"></script>
|
|
</body>
|
|
</html>
|