Spaces:
Running
Running
File size: 962 Bytes
6759add |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support | EduLoom</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/sidebar.js"></script>
<script src="components/header.js"></script>
<script src="components/support-ticket.js"></script>
</head>
<body class="h-full bg-gray-50">
<div class="flex h-full">
<custom-sidebar></custom-sidebar>
<div class="flex-1 flex flex-col overflow-hidden">
<custom-header></custom-header>
<main class="flex-1 overflow-y-auto p-6">
<support-ticket></support-ticket>
</main>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html> |