Spaces:
Running
Running
| <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> |