This commit is contained in:
Халимов Рустам
2025-12-27 17:46:19 +03:00
parent ec66fceb80
commit d318519cd7
14 changed files with 1227 additions and 1 deletions

33
index.html Normal file
View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PrintFit - Генератор Органайзеров</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3b82f6',
secondary: '#1e293b',
accent: '#f59e0b',
}
}
}
}
</script>
<style>
body { margin: 0; background-color: #0f172a; color: white; }
/* Скроллбар в стиле приложения */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1e293b; }
::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>