48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PostgreSQL SensoLab Panel</title>
|
|
<link rel="icon" type="image/svg+xml" href="favicon.svg">
|
|
|
|
<!-- Tailwind CSS -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: 'var(--color-primary)',
|
|
'primary-dark': 'var(--color-primary-dark)',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Lucide Icons -->
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
|
|
<!-- Main Styles -->
|
|
<link rel="stylesheet" href="/styles/main.css">
|
|
<link rel="stylesheet" href="/styles/theme.css">
|
|
<link rel="stylesheet" href="/styles/responsive.css">
|
|
<link rel="stylesheet" href="/styles/animations.css">
|
|
</head>
|
|
<body class="bg-white dark:bg-slate-950 text-slate-800 dark:text-slate-100 transition-colors duration-300">
|
|
<div id="app"></div>
|
|
|
|
<!-- Scripts -->
|
|
<script src="/js/theme.js"></script>
|
|
<script src="/js/api.js"></script>
|
|
<script src="/js/auth.js"></script>
|
|
<script src="/js/router.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
</body>
|
|
</html>
|