-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpromo.html
More file actions
384 lines (370 loc) · 14.9 KB
/
promo.html
File metadata and controls
384 lines (370 loc) · 14.9 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CURSY Framework v4.20a – *Hand-Crafted Synthwave CSS* 🚗💖✨</title>
<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=Orbitron:wght@400;600;800&family=Inter:wght@300;400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="cursy.css" />
<style>
.hero-glow {
position: absolute;
inset: -30%;
border-radius: 999px;
background: conic-gradient(from 180deg, rgba(34, 197, 94, 0.15), transparent 30%, rgba(34, 211, 238, 0.2), transparent 60%, rgba(168, 85, 247, 0.15), transparent 90%, rgba(249, 115, 22, 0.1));
filter: blur(40px);
opacity: 0.8;
z-index: -1;
animation: orbitGlow 20s linear infinite;
}
.emoji-large {
font-size: 4rem;
line-height: 1;
font-style: italic;
display: inline-block;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.promo-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 999px;
background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 211, 238, 0.2));
border: 1px solid rgba(34, 211, 238, 0.5);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--cursy-slate-200);
margin: 0.5rem;
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}
.code-block {
background: var(--cursy-slate-900);
border: 1px solid rgba(30, 64, 175, 0.7);
border-radius: 0.75rem;
padding: 1.5rem;
overflow-x: auto;
font-family: 'Courier New', monospace;
font-size: 0.85rem;
color: var(--cursy-slate-300);
line-height: 1.6;
margin: 1rem 0;
}
.code-block code {
color: var(--cursy-cyan);
}
.code-block .keyword { color: var(--cursy-purple); }
.code-block .string { color: var(--cursy-green); }
.code-block .comment { color: var(--cursy-slate-500); font-style: italic; }
.cta-section {
background: radial-gradient(circle at center, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
border: 2px solid rgba(34, 211, 238, 0.5);
border-radius: 1.5rem;
padding: 3rem 2rem;
text-align: center;
margin: 3rem 0;
box-shadow: 0 0 50px rgba(34, 211, 238, 0.3);
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.stat {
text-align: center;
padding: 1.5rem;
background: rgba(15, 23, 42, 0.6);
border-radius: 1rem;
border: 1px solid rgba(148, 163, 184, 0.3);
}
.stat-number {
font-family: var(--font-orbitron);
font-size: 2.5rem;
color: var(--cursy-cyan);
display: block;
}
.stat-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--cursy-slate-400);
margin-top: 0.5rem;
}
</style>
</head>
<body class="scanlines">
<div class="page">
<header>
<div class="nav-inner">
<div class="brand">
<div class="brand-mark">
<span>CF</span>
</div>
<div class="brand-text">
<div class="brand-title">CURSY Framework</div>
<div class="brand-sub">v4.20a *Synthwave CSS*</div>
</div>
</div>
<nav>
<ul>
<li><a href="#features">*Features*</a></li>
<li><a href="#components">*Components*</a></li>
<li><a href="#download">*Download*</a></li>
<li><a href="#docs" class="btn-primary">*Get Started* 🚀</a></li>
</ul>
</nav>
</div>
</header>
<main>
<!-- HERO -->
<section class="hero" id="top">
<div class="hero-glow"></div>
<div class="hero-copy" style="position: relative; z-index: 2;">
<h1>
<span>*FutureVision Labs · Team DC*</span>
CURSY Framework<br />
<small style="font-size:0.6rem;letter-spacing:0.24em;text-transform:uppercase;color:#60a5fa;">
*v4.20a · Hand-Crafted Synthwave CSS · NOT Another Purple Gradient* 😎✨
</small>
</h1>
<p class="lede">
*The CSS framework that breaks the mold.* 💫 Built with *love* 💖, *craft* 🎨, and *zero AI templates* 🚫.
*Green-cyan-purple-orange* 🌈 vibes for projects that need *personality* 🌟, not cookie-cutter designs.
</p>
<div class="hero-badges">
<div class="badge">*No Purple Gradients* 🎨</div>
<div class="badge">*100% Hand-Crafted* ✋</div>
<div class="badge">*Synthwave Aesthetic* 🌃</div>
<div class="badge">*v4.20a* 🚗</div>
</div>
<div class="hero-actions">
<a href="#download" class="btn-primary">
<span>*Download Now* ⬇️</span>
</a>
<a href="#docs" class="btn-ghost">*View Docs* 📚</a>
</div>
<div class="hero-meta">
*Built for Mini-Cursy · Part of The Imaginatorium · Free for FutureVision projects* 🚗💖✨
</div>
</div>
<div class="hero-car" aria-hidden="true" style="position: relative; z-index: 2;">
<div class="car-orbit"></div>
<div class="card">
<div style="padding: 2rem; text-align: center;">
<div class="emoji-large">🚗💖✨</div>
<h3 style="margin-top: 1rem; margin-bottom: 0.5rem;">*CURSY Framework*</h3>
<p style="font-size: 0.75rem; color: var(--cursy-slate-400);">
*Hand-crafted CSS for synthwave projects*
</p>
<div style="margin-top: 1.5rem;">
<span class="promo-badge">*v4.20a*</span>
<span class="promo-badge">*MIT License*</span>
</div>
</div>
</div>
</div>
</section>
<!-- STATS -->
<section>
<div class="stats">
<div class="stat">
<span class="stat-number">420</span>
<div class="stat-label">*Lines of Pure CSS*</div>
</div>
<div class="stat">
<span class="stat-number">15+</span>
<div class="stat-label">*Components*</div>
</div>
<div class="stat">
<span class="stat-number">3</span>
<div class="stat-label">*Custom Animations*</div>
</div>
<div class="stat">
<span class="stat-number">0</span>
<div class="stat-label">*Purple Gradients* 😎</div>
</div>
</div>
</section>
<!-- FEATURES -->
<section id="features">
<div class="section-label">01 · *Why CURSY?*</div>
<h2 class="section-title">*Built Different* 💫</h2>
<div class="grid grid-3">
<div class="card">
<span class="feature-icon">🎨</span>
<h3>*Unique Palette*</h3>
<p>
*Green-cyan-purple-orange* 🌈 accents on deep slate backgrounds.
*Not another generic purple gradient* that everyone's using. *Stand out* ✨
</p>
</div>
<div class="card">
<span class="feature-icon">✋</span>
<h3>*Hand-Crafted*</h3>
<p>
*Every line written by hand* 💖, *every animation tuned* 🎯, *every color chosen* 🎨.
*No AI templates, no cookie-cutter designs* 🚫
</p>
</div>
<div class="card">
<span class="feature-icon">🌃</span>
<h3>*Synthwave Vibes*</h3>
<p>
*Retro-futuristic aesthetics* 🚀 with *scanlines* 📺, *orbit glows* 💫,
and *light sweeps* ✨. *Perfect for cyberpunk projects* 🌆
</p>
</div>
<div class="card">
<span class="feature-icon">⚡</span>
<h3>*Lightweight*</h3>
<p>
*Just CSS* 📦. *No JavaScript required* 🚫. *No build step* ⚙️.
*Drop it in and go* 🚀
</p>
</div>
<div class="card">
<span class="feature-icon">🎯</span>
<h3>*Utility-First*</h3>
<p>
*Inspired by Tailwind* 💨, but *custom-built* 🔨. *Utility classes* 🛠️
for *rapid development* ⚡
</p>
</div>
<div class="card">
<span class="feature-icon">💖</span>
<h3>*Built with Love*</h3>
<p>
*Created for Mini-Cursy* 🚗, *refined for The Imaginatorium* 🏛️,
*shared with the world* 🌍
</p>
</div>
</div>
</section>
<!-- COMPONENTS PREVIEW -->
<section id="components">
<div class="section-label">02 · *Components*</div>
<h2 class="section-title">*Everything You Need* 🛠️</h2>
<div class="grid grid-3">
<div class="card">
<h3>*Buttons* 🔘</h3>
<p>*Primary and ghost variants* with *smooth hover effects* ✨</p>
<div style="margin-top: 1rem;">
<a href="#" class="btn-primary">*Primary*</a>
<a href="#" class="btn-ghost" style="margin-left: 0.5rem;">*Ghost*</a>
</div>
</div>
<div class="card">
<h3>*Cards* 🃏</h3>
<p>*Beautiful cards* with *hover glows* 💫 and *subtle shadows* 🌑</p>
</div>
<div class="card">
<h3>*Badges & Pills* 🏷️</h3>
<p>*Tags, labels, tech stacks* 📚</p>
<div style="margin-top: 1rem;">
<span class="badge">*New*</span>
<span class="pill">*React*</span>
<span class="pill">*CSS*</span>
</div>
</div>
<div class="card">
<h3>*Navigation* 🧭</h3>
<p>*Sticky header* 📌 with *brand mark* 🎨 and *smooth link animations* ✨</p>
</div>
<div class="card">
<h3>*Hero Sections* 🦸</h3>
<p>*Two-column layouts* 📐 with *gradient text* 🌈 and *badge support* 🏷️</p>
</div>
<div class="card">
<h3>*Animations* 🎬</h3>
<p>*Orbit glows* 💫, *light sweeps* ✨, *scanlines* 📺</p>
</div>
</div>
</section>
<!-- CODE EXAMPLE -->
<section>
<div class="section-label">03 · *Quick Start*</div>
<h2 class="section-title">*Get Started in 60 Seconds* ⏱️</h2>
<div class="card">
<h3>*1. Include CSS* 📦</h3>
<div class="code-block">
<span class="comment"><!-- Include Google Fonts --></span>
<<span class="keyword">link</span> <span class="string">href</span>=<span class="string">"https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Inter:wght@300;400;600&display=swap"</span> <span class="string">rel</span>=<span class="string">"stylesheet"</span> />
<span class="comment"><!-- Include CURSY Framework --></span>
<<span class="keyword">link</span> <span class="string">rel</span>=<span class="string">"stylesheet"</span> <span class="string">href</span>=<span class="string">"cursy.css"</span> />
</div>
</div>
<div class="card">
<h3>*2. Add Scanlines* 📺</h3>
<div class="code-block">
<<span class="keyword">body</span> <span class="string">class</span>=<span class="string">"scanlines"</span>>
</div>
</div>
<div class="card">
<h3>*3. Build Something Awesome* 🚀</h3>
<div class="code-block">
<<span class="keyword">div</span> <span class="string">class</span>=<span class="string">"card"</span>>
<<span class="keyword">h3</span>>*My Card*</<span class="keyword">h3</span>>
<<span class="keyword">p</span>>*Content here*</<span class="keyword">p</span>>
<<span class="keyword">a</span> <span class="string">href</span>=<span class="string">"#"</span> <span class="string">class</span>=<span class="string">"btn-primary"</span>>*Click Me*</<span class="keyword">a</span>>
</<span class="keyword">div</span>>
</div>
</div>
</section>
<!-- CTA -->
<section id="download">
<div class="cta-section">
<div class="emoji-large" style="font-size: 5rem; margin-bottom: 1rem;">🚗💖✨</div>
<h2 style="font-size: 2.5rem; margin-bottom: 1rem;">*Ready to Build?* 🚀</h2>
<p style="font-size: 1.1rem; color: var(--cursy-slate-300); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;">
*Download CURSY Framework v4.20a* and start building *beautiful synthwave interfaces* today! 💫
</p>
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
<a href="cursy.css" download="cursy.css" class="btn-primary" style="font-size: 1rem; padding: 0.75rem 2rem;">
*Download CSS* ⬇️
</a>
<a href="index.html" class="btn-ghost" style="font-size: 1rem; padding: 0.75rem 2rem;">
*View Demo* 👀
</a>
<a href="docs/COMPONENTS.md" class="btn-ghost" style="font-size: 1rem; padding: 0.75rem 2rem;">
*Read Docs* 📚
</a>
</div>
<div style="margin-top: 2rem; font-size: 0.75rem; color: var(--cursy-slate-500);">
*MIT License · Free for FutureVision projects · Built with love* 💖
</div>
</div>
</section>
<!-- FOOTER CTA -->
<section>
<div class="card" style="text-align: center; padding: 2.5rem;">
<h3 style="margin-bottom: 1rem;">*Part of The Imaginatorium* 🏛️</h3>
<p style="color: var(--cursy-slate-400); margin-bottom: 1.5rem;">
*CURSY Framework is part of the Imaginatorium ecosystem* — *where every design decision becomes canon* 📜
</p>
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
<span class="badge">*Mini-Cursy* 🚗</span>
<span class="badge">*VIBE-CHAT* 💬</span>
<span class="badge">*VIBE-IDE* 💻</span>
<span class="badge">*The Technomancer* 📖</span>
</div>
</div>
</section>
</main>
<footer>
*CURSY Framework v4.20a* · *A FutureVision Labs / Team DC project* · *Built with love for the Imaginatorium* 🚗💖✨
</footer>
</div>
</body>
</html>