-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (79 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
80 lines (79 loc) · 2.52 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DNS Management System</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
dns: {
red: '#CD2027', // The specific red from the logo description
dark: '#1a1a1a',
}
}
}
}
}
</script>
<style>
body {
/* background-color: #f3f4f6; Removed to let Tailwind handle it classes */
}
/* Custom scrollbar for desktop feel */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
.dark ::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
background: #4b5563;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
.dark ::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
</style>
<script type="importmap">
{
"imports": {
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0",
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^7.10.0",
"react/": "https://aistudiocdn.com/react@^19.2.1/",
"react": "https://aistudiocdn.com/react@^19.2.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"firebase/app": "https://www.gstatic.com/firebasejs/10.12.0/firebase-app.js",
"firebase/firestore": "https://www.gstatic.com/firebasejs/10.12.0/firebase-firestore.js",
"firebase/analytics": "https://www.gstatic.com/firebasejs/10.12.0/firebase-analytics.js",
"firebase/": "https://aistudiocdn.com/firebase@^12.6.0/",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/package/xlsx.mjs"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-200">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>