snow-flow 3.4.36 → 3.4.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +412 -287
- package/dist/cli/deploy-artifact.js +2 -2
- package/dist/mcp/servicenow-deployment-mcp.js +1 -1
- package/dist/mcp/servicenow-mcp-server.js +2 -2
- package/dist/queen/agent-factory.js +134 -52
- package/dist/queen/servicenow-queen.d.ts +127 -2
- package/dist/queen/servicenow-queen.js +978 -618
- package/dist/services/widget-deployment-service.d.ts +1 -1
- package/dist/services/widget-deployment-service.js +1 -1
- package/dist/templates/claude-md-template.d.ts +1 -1
- package/dist/templates/claude-md-template.js +2 -2
- package/dist/types/servicenow.types.d.ts +1 -1
- package/dist/utils/dependency-detector.d.ts +1 -1
- package/dist/utils/dependency-detector.js +1 -1
- package/dist/utils/servicenow-client.d.ts +1 -1
- package/dist/utils/servicenow-client.js +4 -8
- package/package.json +1 -1
- package/website/components/README.md +419 -0
- package/website/components/code-display/CodeDisplay.css +583 -0
- package/website/components/code-display/CodeDisplay.html +200 -0
- package/website/components/code-display/CodeDisplay.js +375 -0
- package/website/components/code-display/CodeDisplay.jsx +268 -0
- package/website/components/demo/ComponentLibraryDemo.html +845 -0
- package/website/components/feature-cards/FeatureCards.css +573 -0
- package/website/components/feature-cards/FeatureCards.html +247 -0
- package/website/components/feature-cards/FeatureCards.js +382 -0
- package/website/components/feature-cards/FeatureCards.jsx +235 -0
- package/website/components/hero/Hero.css +558 -0
- package/website/components/hero/Hero.html +98 -0
- package/website/components/hero/Hero.js +415 -0
- package/website/components/hero/Hero.jsx +214 -0
- package/website/components/interactive/InteractiveElements.css +776 -0
- package/website/components/interactive/InteractiveElements.html +283 -0
- package/website/components/interactive/InteractiveElements.js +489 -0
- package/website/components/interactive/InteractiveElements.jsx +444 -0
- package/website/components/layout/LayoutComponents.css +697 -0
- package/website/components/layout/LayoutComponents.html +374 -0
- package/website/components/layout/LayoutComponents.js +447 -0
- package/website/components/layout/LayoutComponents.jsx +379 -0
- package/website/components/navigation/Navigation.css +383 -0
- package/website/components/navigation/Navigation.html +89 -0
- package/website/components/navigation/Navigation.js +248 -0
- package/website/components/navigation/Navigation.jsx +124 -0
- package/website/css/animations.css +854 -0
- package/website/css/style.css +916 -948
- package/website/index.html +394 -424
- package/website/js/animations.js +707 -0
- package/website/js/main.js +310 -383
- package/website/mcp-servers.html +310 -0
|
@@ -0,0 +1,558 @@
|
|
|
1
|
+
/* Hero Component - Black/White Minimalist Design */
|
|
2
|
+
|
|
3
|
+
.sf-hero {
|
|
4
|
+
position: relative;
|
|
5
|
+
min-height: 100vh;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/* Background Animation */
|
|
14
|
+
.sf-hero__background {
|
|
15
|
+
position: absolute;
|
|
16
|
+
top: 0;
|
|
17
|
+
left: 0;
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 100%;
|
|
20
|
+
z-index: 1;
|
|
21
|
+
opacity: 0;
|
|
22
|
+
transition: opacity 1s ease-in-out;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.sf-hero--visible .sf-hero__background {
|
|
26
|
+
opacity: 1;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Animated Mesh */
|
|
30
|
+
.sf-hero__mesh {
|
|
31
|
+
position: absolute;
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 100%;
|
|
34
|
+
background-image:
|
|
35
|
+
radial-gradient(circle at 25% 25%, rgba(0,0,0,0.02) 0%, transparent 50%),
|
|
36
|
+
radial-gradient(circle at 75% 75%, rgba(0,0,0,0.02) 0%, transparent 50%);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.sf-hero__mesh-dot {
|
|
40
|
+
position: absolute;
|
|
41
|
+
width: 2px;
|
|
42
|
+
height: 2px;
|
|
43
|
+
background: rgba(0, 0, 0, 0.1);
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
animation: sf-float 6s ease-in-out infinite;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@keyframes sf-float {
|
|
49
|
+
0%, 100% {
|
|
50
|
+
transform: translate(0, 0) scale(1);
|
|
51
|
+
opacity: 0.3;
|
|
52
|
+
}
|
|
53
|
+
33% {
|
|
54
|
+
transform: translate(-10px, -10px) scale(1.2);
|
|
55
|
+
opacity: 0.6;
|
|
56
|
+
}
|
|
57
|
+
66% {
|
|
58
|
+
transform: translate(10px, 10px) scale(0.8);
|
|
59
|
+
opacity: 0.4;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* Gradient Orbs */
|
|
64
|
+
.sf-hero__orb {
|
|
65
|
+
position: absolute;
|
|
66
|
+
border-radius: 50%;
|
|
67
|
+
background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.06));
|
|
68
|
+
filter: blur(40px);
|
|
69
|
+
animation: sf-orb-float 8s ease-in-out infinite;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.sf-hero__orb--1 {
|
|
73
|
+
width: 300px;
|
|
74
|
+
height: 300px;
|
|
75
|
+
top: 10%;
|
|
76
|
+
left: 10%;
|
|
77
|
+
animation-delay: 0s;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.sf-hero__orb--2 {
|
|
81
|
+
width: 200px;
|
|
82
|
+
height: 200px;
|
|
83
|
+
top: 60%;
|
|
84
|
+
right: 15%;
|
|
85
|
+
animation-delay: 2s;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.sf-hero__orb--3 {
|
|
89
|
+
width: 150px;
|
|
90
|
+
height: 150px;
|
|
91
|
+
bottom: 20%;
|
|
92
|
+
left: 60%;
|
|
93
|
+
animation-delay: 4s;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@keyframes sf-orb-float {
|
|
97
|
+
0%, 100% {
|
|
98
|
+
transform: translate(0, 0) scale(1);
|
|
99
|
+
}
|
|
100
|
+
50% {
|
|
101
|
+
transform: translate(20px, -20px) scale(1.1);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* Content Container */
|
|
106
|
+
.sf-hero__container {
|
|
107
|
+
position: relative;
|
|
108
|
+
z-index: 2;
|
|
109
|
+
max-width: 1200px;
|
|
110
|
+
margin: 0 auto;
|
|
111
|
+
padding: 0 2rem;
|
|
112
|
+
text-align: center;
|
|
113
|
+
width: 100%;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.sf-hero__content {
|
|
117
|
+
transform: translateY(30px);
|
|
118
|
+
opacity: 0;
|
|
119
|
+
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.sf-hero--visible .sf-hero__content {
|
|
123
|
+
transform: translateY(0);
|
|
124
|
+
opacity: 1;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* Typography */
|
|
128
|
+
.sf-hero__title {
|
|
129
|
+
font-size: clamp(3rem, 8vw, 6rem);
|
|
130
|
+
font-weight: 900;
|
|
131
|
+
margin-bottom: 1rem;
|
|
132
|
+
background: linear-gradient(135deg, #000000 0%, #333333 50%, #000000 100%);
|
|
133
|
+
background-size: 200% 200%;
|
|
134
|
+
-webkit-background-clip: text;
|
|
135
|
+
-webkit-text-fill-color: transparent;
|
|
136
|
+
background-clip: text;
|
|
137
|
+
animation: sf-gradient-text 4s ease-in-out infinite;
|
|
138
|
+
line-height: 1.1;
|
|
139
|
+
letter-spacing: -0.02em;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.sf-hero__subtitle {
|
|
143
|
+
font-size: clamp(1.2rem, 3vw, 1.8rem);
|
|
144
|
+
font-weight: 300;
|
|
145
|
+
margin-bottom: 2rem;
|
|
146
|
+
color: #666666;
|
|
147
|
+
line-height: 1.4;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.sf-hero__description {
|
|
151
|
+
font-size: clamp(1rem, 2.5vw, 1.25rem);
|
|
152
|
+
line-height: 1.6;
|
|
153
|
+
color: #555555;
|
|
154
|
+
max-width: 700px;
|
|
155
|
+
margin: 0 auto 3rem;
|
|
156
|
+
opacity: 0;
|
|
157
|
+
transform: translateY(20px);
|
|
158
|
+
transition: all 0.6s ease 0.3s;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.sf-hero__description--visible {
|
|
162
|
+
opacity: 1;
|
|
163
|
+
transform: translateY(0);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Typewriter Cursor */
|
|
167
|
+
.sf-hero__cursor {
|
|
168
|
+
display: inline-block;
|
|
169
|
+
background: #000000;
|
|
170
|
+
margin-left: 2px;
|
|
171
|
+
width: 3px;
|
|
172
|
+
animation: sf-cursor-blink 1s infinite;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
@keyframes sf-cursor-blink {
|
|
176
|
+
0%, 50% {
|
|
177
|
+
opacity: 1;
|
|
178
|
+
}
|
|
179
|
+
51%, 100% {
|
|
180
|
+
opacity: 0;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@keyframes sf-gradient-text {
|
|
185
|
+
0%, 100% {
|
|
186
|
+
background-position: 0% 50%;
|
|
187
|
+
}
|
|
188
|
+
50% {
|
|
189
|
+
background-position: 100% 50%;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/* CTA Buttons */
|
|
194
|
+
.sf-hero__actions {
|
|
195
|
+
display: flex;
|
|
196
|
+
gap: 1.5rem;
|
|
197
|
+
justify-content: center;
|
|
198
|
+
margin-bottom: 4rem;
|
|
199
|
+
flex-wrap: wrap;
|
|
200
|
+
opacity: 0;
|
|
201
|
+
transform: translateY(20px);
|
|
202
|
+
transition: all 0.6s ease 0.5s;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.sf-hero__actions--visible {
|
|
206
|
+
opacity: 1;
|
|
207
|
+
transform: translateY(0);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.sf-hero__cta {
|
|
211
|
+
position: relative;
|
|
212
|
+
padding: 1rem 2.5rem;
|
|
213
|
+
border: none;
|
|
214
|
+
border-radius: 50px;
|
|
215
|
+
font-size: 1.1rem;
|
|
216
|
+
font-weight: 600;
|
|
217
|
+
cursor: pointer;
|
|
218
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
219
|
+
text-decoration: none;
|
|
220
|
+
display: inline-flex;
|
|
221
|
+
align-items: center;
|
|
222
|
+
gap: 0.5rem;
|
|
223
|
+
overflow: hidden;
|
|
224
|
+
min-width: 180px;
|
|
225
|
+
justify-content: center;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* Primary CTA */
|
|
229
|
+
.sf-hero__cta--primary {
|
|
230
|
+
background: linear-gradient(135deg, #000000 0%, #333333 100%);
|
|
231
|
+
color: white;
|
|
232
|
+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.sf-hero__cta--primary:hover {
|
|
236
|
+
transform: translateY(-3px);
|
|
237
|
+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.sf-hero__cta--primary:active {
|
|
241
|
+
transform: translateY(-1px);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/* Secondary CTA */
|
|
245
|
+
.sf-hero__cta--secondary {
|
|
246
|
+
background: transparent;
|
|
247
|
+
color: #333333;
|
|
248
|
+
border: 2px solid #333333;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.sf-hero__cta--secondary:hover {
|
|
252
|
+
background: #000000;
|
|
253
|
+
color: white;
|
|
254
|
+
transform: translateY(-3px);
|
|
255
|
+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.sf-hero__cta--secondary:hover .sf-hero__cta-arrow {
|
|
259
|
+
transform: translateX(5px);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* CTA Effects */
|
|
263
|
+
.sf-hero__cta-ripple {
|
|
264
|
+
position: absolute;
|
|
265
|
+
top: 50%;
|
|
266
|
+
left: 50%;
|
|
267
|
+
width: 0;
|
|
268
|
+
height: 0;
|
|
269
|
+
border-radius: 50%;
|
|
270
|
+
background: rgba(255, 255, 255, 0.3);
|
|
271
|
+
transform: translate(-50%, -50%);
|
|
272
|
+
transition: all 0.5s ease;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.sf-hero__cta--primary:hover .sf-hero__cta-ripple {
|
|
276
|
+
width: 300px;
|
|
277
|
+
height: 300px;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.sf-hero__cta-arrow {
|
|
281
|
+
transition: transform 0.3s ease;
|
|
282
|
+
font-weight: bold;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/* Stats */
|
|
286
|
+
.sf-hero__stats {
|
|
287
|
+
display: flex;
|
|
288
|
+
justify-content: center;
|
|
289
|
+
gap: 3rem;
|
|
290
|
+
flex-wrap: wrap;
|
|
291
|
+
margin-bottom: 2rem;
|
|
292
|
+
opacity: 0;
|
|
293
|
+
transform: translateY(20px);
|
|
294
|
+
transition: all 0.6s ease 0.7s;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.sf-hero__stats--visible {
|
|
298
|
+
opacity: 1;
|
|
299
|
+
transform: translateY(0);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.sf-hero__stat {
|
|
303
|
+
text-align: center;
|
|
304
|
+
opacity: 0;
|
|
305
|
+
transform: translateY(20px);
|
|
306
|
+
animation: sf-stat-appear 0.6s ease forwards;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
@keyframes sf-stat-appear {
|
|
310
|
+
to {
|
|
311
|
+
opacity: 1;
|
|
312
|
+
transform: translateY(0);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.sf-hero__stat-number {
|
|
317
|
+
font-size: 2.5rem;
|
|
318
|
+
font-weight: 800;
|
|
319
|
+
background: linear-gradient(135deg, #000000, #666666);
|
|
320
|
+
-webkit-background-clip: text;
|
|
321
|
+
-webkit-text-fill-color: transparent;
|
|
322
|
+
background-clip: text;
|
|
323
|
+
line-height: 1;
|
|
324
|
+
margin-bottom: 0.5rem;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.sf-hero__stat-label {
|
|
328
|
+
font-size: 0.9rem;
|
|
329
|
+
color: #666666;
|
|
330
|
+
font-weight: 500;
|
|
331
|
+
text-transform: uppercase;
|
|
332
|
+
letter-spacing: 1px;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
/* Scroll Indicator */
|
|
336
|
+
.sf-hero__scroll-indicator {
|
|
337
|
+
position: absolute;
|
|
338
|
+
bottom: 2rem;
|
|
339
|
+
left: 50%;
|
|
340
|
+
transform: translateX(-50%);
|
|
341
|
+
display: flex;
|
|
342
|
+
flex-direction: column;
|
|
343
|
+
align-items: center;
|
|
344
|
+
gap: 0.5rem;
|
|
345
|
+
opacity: 0;
|
|
346
|
+
transition: all 0.6s ease 1s;
|
|
347
|
+
cursor: pointer;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.sf-hero__scroll-indicator--visible {
|
|
351
|
+
opacity: 1;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.sf-hero__scroll-indicator:hover {
|
|
355
|
+
transform: translateX(-50%) translateY(-5px);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.sf-hero__scroll-arrow {
|
|
359
|
+
display: flex;
|
|
360
|
+
flex-direction: column;
|
|
361
|
+
align-items: center;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.sf-hero__scroll-arrow span {
|
|
365
|
+
display: block;
|
|
366
|
+
width: 2px;
|
|
367
|
+
height: 8px;
|
|
368
|
+
background: #666666;
|
|
369
|
+
margin: 1px 0;
|
|
370
|
+
border-radius: 2px;
|
|
371
|
+
animation: sf-scroll-arrow 2s infinite;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.sf-hero__scroll-arrow span:nth-child(2) {
|
|
375
|
+
animation-delay: 0.2s;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.sf-hero__scroll-arrow span:nth-child(3) {
|
|
379
|
+
animation-delay: 0.4s;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
@keyframes sf-scroll-arrow {
|
|
383
|
+
0% {
|
|
384
|
+
opacity: 0;
|
|
385
|
+
transform: translateY(-10px);
|
|
386
|
+
}
|
|
387
|
+
50% {
|
|
388
|
+
opacity: 1;
|
|
389
|
+
transform: translateY(0);
|
|
390
|
+
}
|
|
391
|
+
100% {
|
|
392
|
+
opacity: 0;
|
|
393
|
+
transform: translateY(10px);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.sf-hero__scroll-text {
|
|
398
|
+
font-size: 0.8rem;
|
|
399
|
+
color: #666666;
|
|
400
|
+
text-transform: uppercase;
|
|
401
|
+
letter-spacing: 1px;
|
|
402
|
+
margin-top: 0.5rem;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/* Responsive Design */
|
|
406
|
+
@media (max-width: 768px) {
|
|
407
|
+
.sf-hero__container {
|
|
408
|
+
padding: 0 1rem;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.sf-hero__title {
|
|
412
|
+
margin-bottom: 1.5rem;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.sf-hero__subtitle {
|
|
416
|
+
margin-bottom: 2rem;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.sf-hero__description {
|
|
420
|
+
margin-bottom: 2.5rem;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.sf-hero__actions {
|
|
424
|
+
flex-direction: column;
|
|
425
|
+
align-items: center;
|
|
426
|
+
gap: 1rem;
|
|
427
|
+
margin-bottom: 3rem;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.sf-hero__cta {
|
|
431
|
+
width: 100%;
|
|
432
|
+
max-width: 280px;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.sf-hero__stats {
|
|
436
|
+
gap: 2rem;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.sf-hero__stat-number {
|
|
440
|
+
font-size: 2rem;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/* Reduce orb sizes on mobile */
|
|
444
|
+
.sf-hero__orb--1 {
|
|
445
|
+
width: 200px;
|
|
446
|
+
height: 200px;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.sf-hero__orb--2 {
|
|
450
|
+
width: 150px;
|
|
451
|
+
height: 150px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.sf-hero__orb--3 {
|
|
455
|
+
width: 100px;
|
|
456
|
+
height: 100px;
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
@media (max-width: 480px) {
|
|
461
|
+
.sf-hero__stats {
|
|
462
|
+
gap: 1.5rem;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.sf-hero__stat-number {
|
|
466
|
+
font-size: 1.8rem;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.sf-hero__stat-label {
|
|
470
|
+
font-size: 0.8rem;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.sf-hero__cursor {
|
|
474
|
+
width: 2px;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
/* Reduced Motion */
|
|
479
|
+
@media (prefers-reduced-motion: reduce) {
|
|
480
|
+
.sf-hero__background,
|
|
481
|
+
.sf-hero__mesh-dot,
|
|
482
|
+
.sf-hero__orb,
|
|
483
|
+
.sf-hero__title,
|
|
484
|
+
.sf-hero__cursor,
|
|
485
|
+
.sf-hero__content,
|
|
486
|
+
.sf-hero__description,
|
|
487
|
+
.sf-hero__actions,
|
|
488
|
+
.sf-hero__stats,
|
|
489
|
+
.sf-hero__scroll-indicator,
|
|
490
|
+
.sf-hero__scroll-arrow span,
|
|
491
|
+
.sf-hero__cta,
|
|
492
|
+
.sf-hero__cta-ripple,
|
|
493
|
+
.sf-hero__stat {
|
|
494
|
+
animation: none;
|
|
495
|
+
transition: none;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.sf-hero__mesh-dot {
|
|
499
|
+
opacity: 0.1;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
/* High Contrast Mode */
|
|
504
|
+
@media (prefers-contrast: high) {
|
|
505
|
+
.sf-hero {
|
|
506
|
+
background: white;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.sf-hero__title {
|
|
510
|
+
-webkit-text-fill-color: black;
|
|
511
|
+
color: black;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.sf-hero__subtitle,
|
|
515
|
+
.sf-hero__description {
|
|
516
|
+
color: black;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.sf-hero__cta--primary {
|
|
520
|
+
background: black;
|
|
521
|
+
color: white;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.sf-hero__cta--secondary {
|
|
525
|
+
border-color: black;
|
|
526
|
+
color: black;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.sf-hero__stat-number {
|
|
530
|
+
-webkit-text-fill-color: black;
|
|
531
|
+
color: black;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.sf-hero__orb {
|
|
535
|
+
background: rgba(0, 0, 0, 0.1);
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
/* Print Styles */
|
|
540
|
+
@media print {
|
|
541
|
+
.sf-hero {
|
|
542
|
+
min-height: auto;
|
|
543
|
+
background: white;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.sf-hero__background,
|
|
547
|
+
.sf-hero__scroll-indicator {
|
|
548
|
+
display: none;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.sf-hero__title,
|
|
552
|
+
.sf-hero__subtitle,
|
|
553
|
+
.sf-hero__description,
|
|
554
|
+
.sf-hero__stat-number {
|
|
555
|
+
-webkit-text-fill-color: black;
|
|
556
|
+
color: black;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Snow-Flow Hero Component</title>
|
|
7
|
+
<link rel="stylesheet" href="Hero.css">
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<!-- Hero Section Component -->
|
|
11
|
+
<section class="sf-hero" id="sf-hero">
|
|
12
|
+
<!-- Animated Background Mesh -->
|
|
13
|
+
<div class="sf-hero__background">
|
|
14
|
+
<div class="sf-hero__mesh" id="sf-hero-mesh">
|
|
15
|
+
<!-- Dots will be generated by JavaScript -->
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<!-- Gradient Orbs -->
|
|
19
|
+
<div class="sf-hero__orb sf-hero__orb--1"></div>
|
|
20
|
+
<div class="sf-hero__orb sf-hero__orb--2"></div>
|
|
21
|
+
<div class="sf-hero__orb sf-hero__orb--3"></div>
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
<div class="sf-hero__container">
|
|
25
|
+
<div class="sf-hero__content">
|
|
26
|
+
<!-- Main Title with Typewriter Effect -->
|
|
27
|
+
<h1 class="sf-hero__title" id="sf-hero-title">
|
|
28
|
+
<!-- Title will be typed here by JavaScript -->
|
|
29
|
+
</h1>
|
|
30
|
+
|
|
31
|
+
<!-- Subtitle with Typewriter Effect -->
|
|
32
|
+
<h2 class="sf-hero__subtitle" id="sf-hero-subtitle">
|
|
33
|
+
<!-- Subtitle will be typed here by JavaScript -->
|
|
34
|
+
</h2>
|
|
35
|
+
|
|
36
|
+
<!-- Description -->
|
|
37
|
+
<p class="sf-hero__description" id="sf-hero-description">
|
|
38
|
+
Revolutionize your ServiceNow development with AI-powered automation, intelligent orchestration, and cutting-edge tools designed for the modern enterprise.
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
<!-- CTA Buttons -->
|
|
42
|
+
<div class="sf-hero__actions" id="sf-hero-actions">
|
|
43
|
+
<button class="sf-hero__cta sf-hero__cta--primary" id="sf-hero-primary-cta" data-href="#get-started">
|
|
44
|
+
Get Started
|
|
45
|
+
<span class="sf-hero__cta-ripple"></span>
|
|
46
|
+
</button>
|
|
47
|
+
|
|
48
|
+
<button class="sf-hero__cta sf-hero__cta--secondary" id="sf-hero-secondary-cta" data-href="#features">
|
|
49
|
+
Learn More
|
|
50
|
+
<span class="sf-hero__cta-arrow">→</span>
|
|
51
|
+
</button>
|
|
52
|
+
</div>
|
|
53
|
+
|
|
54
|
+
<!-- Stats -->
|
|
55
|
+
<div class="sf-hero__stats" id="sf-hero-stats">
|
|
56
|
+
<div class="sf-hero__stat" data-number="17" data-label="MCP Servers">
|
|
57
|
+
<div class="sf-hero__stat-number">17</div>
|
|
58
|
+
<div class="sf-hero__stat-label">MCP Servers</div>
|
|
59
|
+
</div>
|
|
60
|
+
<div class="sf-hero__stat" data-number="200+" data-label="Tools">
|
|
61
|
+
<div class="sf-hero__stat-number">200+</div>
|
|
62
|
+
<div class="sf-hero__stat-label">Tools</div>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="sf-hero__stat" data-number="80%" data-label="Time Saved">
|
|
65
|
+
<div class="sf-hero__stat-number">80%</div>
|
|
66
|
+
<div class="sf-hero__stat-label">Time Saved</div>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="sf-hero__stat" data-number="100%" data-label="Real Data">
|
|
69
|
+
<div class="sf-hero__stat-number">100%</div>
|
|
70
|
+
<div class="sf-hero__stat-label">Real Data</div>
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
<!-- Scroll Indicator -->
|
|
76
|
+
<div class="sf-hero__scroll-indicator" id="sf-hero-scroll">
|
|
77
|
+
<div class="sf-hero__scroll-arrow">
|
|
78
|
+
<span></span>
|
|
79
|
+
<span></span>
|
|
80
|
+
<span></span>
|
|
81
|
+
</div>
|
|
82
|
+
<span class="sf-hero__scroll-text">Scroll to explore</span>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
</section>
|
|
86
|
+
|
|
87
|
+
<!-- Demo Sections for Scroll Testing -->
|
|
88
|
+
<section id="features" style="height: 100vh; background: linear-gradient(135deg, #f0f0f0, #e0e0e0); display: flex; align-items: center; justify-content: center;">
|
|
89
|
+
<h2>Features Section</h2>
|
|
90
|
+
</section>
|
|
91
|
+
|
|
92
|
+
<section id="get-started" style="height: 100vh; background: linear-gradient(135deg, #e0e0e0, #d0d0d0); display: flex; align-items: center; justify-content: center;">
|
|
93
|
+
<h2>Get Started Section</h2>
|
|
94
|
+
</section>
|
|
95
|
+
|
|
96
|
+
<script src="Hero.js"></script>
|
|
97
|
+
</body>
|
|
98
|
+
</html>
|