-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (138 loc) · 4.81 KB
/
index.html
File metadata and controls
149 lines (138 loc) · 4.81 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexlyn | MikroTik® Master Distribution</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
nexlyn: {
DEFAULT: '#E60026',
glow: '#FF1A3D',
dark: '#1A0005',
},
},
fontFamily: {
sans: ['Plus Jakarta Sans', 'Inter', 'sans-serif'],
},
animation: {
'pulse-slow': 'pulse 8s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'data-flow': 'data-flow 20s linear infinite',
'sonar': 'sonar 2s cubic-bezier(0, 0, 0.2, 1) infinite',
},
keyframes: {
'data-flow': {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100%)' },
},
'sonar': {
'0%': { transform: 'scale(0.95)', opacity: '0.8' },
'70%': { transform: 'scale(1.3)', opacity: '0' },
'100%': { transform: 'scale(0.95)', opacity: '0' },
}
}
},
},
}
</script>
<style>
:root {
--bg-grid: rgba(230, 0, 38, 0.04);
--bg-dots: rgba(230, 0, 38, 0.08);
--bg-color: #ffffff;
--text-color: #0f172a;
}
.dark {
--bg-grid: rgba(230, 0, 38, 0.04);
--bg-dots: rgba(230, 0, 38, 0.08);
--bg-color: #030303;
--text-color: #f1f5f9;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
overflow-x: hidden;
transition: background-color 0.5s ease;
}
.bg-grid {
position: fixed;
inset: 0;
z-index: -1;
background-image:
linear-gradient(var(--bg-grid) 1px, transparent 1px),
linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
background-size: 80px 80px;
}
.bg-dots {
position: fixed;
inset: 0;
z-index: -1;
background-image: radial-gradient(var(--bg-dots) 1.5px, transparent 1.5px);
background-size: 20px 20px;
}
.streamer {
position: fixed;
top: 0;
width: 1px;
height: 100vh;
background: linear-gradient(to bottom, transparent, rgba(230, 0, 38, 0.2), transparent);
animation: data-flow 18s linear infinite;
z-index: -1;
}
.glass-panel {
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.dark .glass-panel {
background: rgba(10, 10, 10, 0.7);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.text-glow {
text-shadow: 0 0 15px rgba(230, 0, 38, 0.3);
}
.no-scrollbar::-webkit-scrollbar { display: none; }
@keyframes heroIn {
0% { opacity: 0; transform: translateY(30px); filter: blur(8px); }
100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroOut {
0% { opacity: 1; transform: translateY(0); filter: blur(0); }
100% { opacity: 0; transform: translateY(-30px); filter: blur(8px); }
}
.hero-animate-in {
animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-animate-out {
animation: heroOut 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.2.3",
"react/": "https://esm.sh/react@^19.2.3/",
"@google/genai": "https://esm.sh/@google/genai@^1.37.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"recharts": "https://esm.sh/recharts@^3.6.0"
}
}
</script>
</head>
<body>
<div class="bg-grid"></div>
<div class="bg-dots"></div>
<div class="streamer" style="left: 20%; animation-delay: 0s;"></div>
<div class="streamer" style="left: 50%; animation-delay: 5s;"></div>
<div class="streamer" style="left: 80%; animation-delay: 10s;"></div>
<div id="root"></div>
</body>
</html>