raidensreturn commited on
Commit
481b91e
·
verified ·
1 Parent(s): 75233fa

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. assets/css/styles.css +128 -0
  2. assets/js/main.js +1 -0
  3. index.html +314 -19
assets/css/styles.css ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --bg: #05070f;
3
+ --bg-alt: #0d111c;
4
+ --card: #11182a;
5
+ --accent: #6ee7b7;
6
+ --accent-strong: #34d399;
7
+ --text: #f8fafc;
8
+ --muted: #9ca3af;
9
+ --border: rgba(255, 255, 255, 0.08);
10
+ --transition: 200ms ease;
11
+ font-size: 16px;
12
+ }
13
+
14
+ *,
15
+ *::before,
16
+ *::after {
17
+ box-sizing: border-box;
18
+ }
19
+
20
+ body {
21
+ margin: 0;
22
+ font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
23
+ background: linear-gradient(120deg, #030712, #111827);
24
+ color: var(--text);
25
+ line-height: 1.6;
26
+ }
27
+
28
+ img,
29
+ svg {
30
+ max-width: 100%;
31
+ display: block;
32
+ }
33
+
34
+ a {
35
+ color: inherit;
36
+ text-decoration: none;
37
+ }
38
+
39
+ ul {
40
+ list-style: none;
41
+ padding: 0;
42
+ margin: 0;
43
+ }
44
+
45
+ .container {
46
+ width: min(1200px, 90vw);
47
+ margin: 0 auto;
48
+ }
49
+
50
+ .section {
51
+ padding: 4.5rem 0;
52
+ }
53
+
54
+ .section-header {
55
+ margin-bottom: 2.5rem;
56
+ }
57
+
58
+ .section-header p {
59
+ max-width: 560px;
60
+ }
61
+
62
+ .eyebrow {
63
+ font-size: 0.85rem;
64
+ letter-spacing: 0.08em;
65
+ text-transform: uppercase;
66
+ color: var(--accent);
67
+ margin-bottom: 0.5rem;
68
+ }
69
+
70
+ h1, h2, h3, h4 {
71
+ margin: 0 0 0.75rem;
72
+ line-height: 1.2;
73
+ }
74
+
75
+ p {
76
+ margin: 0 0 1rem;
77
+ color: var(--muted);
78
+ }
79
+
80
+ .site-header {
81
+ position: sticky;
82
+ top: 0;
83
+ z-index: 10;
84
+ background: rgba(5, 7, 15, 0.9);
85
+ backdrop-filter: blur(16px);
86
+ border-bottom: 1px solid var(--border);
87
+ }
88
+
89
+ .header-grid {
90
+ display: grid;
91
+ grid-template-columns: auto 1fr auto;
92
+ align-items: center;
93
+ gap: 1rem;
94
+ padding: 1rem 0;
95
+ }
96
+
97
+ .logo a {
98
+ font-weight: 700;
99
+ font-size: 1.1rem;
100
+ display: inline-flex;
101
+ align-items: center;
102
+ gap: 0.4rem;
103
+ }
104
+
105
+ .logo-dot {
106
+ width: 12px;
107
+ height: 12px;
108
+ border-radius: 50%;
109
+ background: var(--accent);
110
+ display: inline-block;
111
+ }
112
+
113
+ .primary-nav {
114
+ justify-self: center;
115
+ }
116
+
117
+ .primary-nav ul {
118
+ display: flex;
119
+ gap: 1.5rem;
120
+ }
121
+
122
+ .primary-nav a {
123
+ font-weight: 500;
124
+ color: var(--muted);
125
+ transition: color var(--transition);
126
+ }
127
+
128
+ .primary-nav a
assets/js/main.js ADDED
@@ -0,0 +1 @@
 
 
1
+ // generated stub
index.html CHANGED
@@ -1,19 +1,314 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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">
6
+ <meta name="description" content="Brightwave Studio crafts bold, human-centered digital experiences for modern brands.">
7
+ <meta name="keywords" content="design studio, web design, branding, creative agency">
8
+ <title>Brightwave Studio | Digital Design & Strategy</title>
9
+ <link rel="preconnect" href="https://fonts.googleapis.com">
10
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
12
+ <link rel="stylesheet" href="assets/css/styles.css">
13
+ </head>
14
+ <body>
15
+ <header class="site-header" id="top">
16
+ <div class="container header-grid">
17
+ <div class="logo">
18
+ <a href="#top" aria-label="Brightwave Studio">
19
+ <span class="logo-dot"></span>Brightwave
20
+ </a>
21
+ </div>
22
+ <nav class="primary-nav" aria-label="Main navigation">
23
+ <button class="nav-toggle" aria-expanded="false" aria-controls="nav-menu">
24
+ <span class="sr-only">Toggle navigation</span>
25
+ <span class="hamburger"></span>
26
+ </button>
27
+ <ul id="nav-menu">
28
+ <li><a href="#services">Services</a></li>
29
+ <li><a href="#work">Work</a></li>
30
+ <li><a href="#testimonials">Testimonials</a></li>
31
+ <li><a href="#contact">Contact</a></li>
32
+ <li><a href="#insights">Insights</a></li>
33
+ </ul>
34
+ </nav>
35
+ <div class="header-cta">
36
+ <a class="btn ghost" href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" rel="noopener">Built with anycoder</a>
37
+ <a class="btn solid" href="#contact">Let’s talk</a>
38
+ </div>
39
+ </div>
40
+ </header>
41
+
42
+ <main>
43
+ <section class="hero" aria-labelledby="hero-title">
44
+ <div class="container hero-grid">
45
+ <div class="hero-copy">
46
+ <p class="eyebrow">Award-winning digital studio</p>
47
+ <h1 id="hero-title">We design bold experiences that move people & brands.</h1>
48
+ <p>Strategy, design, and code—aligned to help ambitious teams launch products, refresh identities, and lead category-defining stories.</p>
49
+ <div class="hero-actions">
50
+ <a class="btn solid" href="#work">See our work</a>
51
+ <a class="btn ghost" href="#insights">Latest insights</a>
52
+ </div>
53
+ <dl class="hero-stats">
54
+ <div>
55
+ <dt>78</dt>
56
+ <dd>product launches</dd>
57
+ </div>
58
+ <div>
59
+ <dt>+146%</dt>
60
+ <dd>avg. engagement growth</dd>
61
+ </div>
62
+ <div>
63
+ <dt>12</dt>
64
+ <dd>industries served</dd>
65
+ </div>
66
+ </dl>
67
+ </div>
68
+ <div class="hero-media">
69
+ <div class="media-card">
70
+ <p>“Brightwave reshaped our platform narrative and delivered a design system that scales with confidence.”</p>
71
+ <span>— Maya Patel, Nimbus OS</span>
72
+ </div>
73
+ <div class="live-badge">
74
+ <span class="ping"></span>
75
+ Live capacity: <strong>3 slots</strong> left in Q3
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </section>
80
+
81
+ <section id="services" class="services section" aria-labelledby="services-title">
82
+ <div class="container">
83
+ <div class="section-header">
84
+ <p class="eyebrow">What we do</p>
85
+ <h2 id="services-title">Full-stack design for modern teams</h2>
86
+ <p>From discovery to deployment, we partner across the entire lifecycle with fast feedback loops and measurable impact.</p>
87
+ </div>
88
+ <div class="services-grid">
89
+ <article>
90
+ <h3>Brand Systems</h3>
91
+ <p>Modular visual languages, messaging frameworks, and launch kits built for omnichannel consistency.</p>
92
+ <ul>
93
+ <li>Narrative & tone architecture</li>
94
+ <li>Design systems & libraries</li>
95
+ <li>Guidelines & governance</li>
96
+ </ul>
97
+ </article>
98
+ <article>
99
+ <h3>Product Experience</h3>
100
+ <p>Data-backed UX research, prototyping, and UI craft for web apps, SaaS dashboards, and mobile services.</p>
101
+ <ul>
102
+ <li>Journey mapping & audits</li>
103
+ <li>Rapid prototyping</li>
104
+ <li>Accessible component design</li>
105
+ </ul>
106
+ </article>
107
+ <article>
108
+ <h3>Launch & Growth</h3>
109
+ <p>Campaign sites, interactive stories, and content engines engineered to convert and evolve.</p>
110
+ <ul>
111
+ <li>Full-stack web builds</li>
112
+ <li>Web performance tuning</li>
113
+ <li>Analytics & experimentation</li>
114
+ </ul>
115
+ </article>
116
+ </div>
117
+ </div>
118
+ </section>
119
+
120
+ <section id="work" class="work section" aria-labelledby="work-title">
121
+ <div class="container">
122
+ <div class="section-header">
123
+ <p class="eyebrow">Case snapshots</p>
124
+ <h2 id="work-title">Launches we’re proud of</h2>
125
+ </div>
126
+ <div class="work-grid">
127
+ <article class="work-card">
128
+ <div class="work-tag">Fintech</div>
129
+ <h3>Pulse Ledger</h3>
130
+ <p>Redesigned the insights dashboard, increasing active trader retention by 38% through data storytelling.</p>
131
+ <div class="meta">
132
+ <span>Scope: UX, UI, front-end</span>
133
+ <span>Timeline: 14 weeks</span>
134
+ </div>
135
+ </article>
136
+ <article class="work-card">
137
+ <div class="work-tag">Climate</div>
138
+ <h3>Solara Atlas</h3>
139
+ <p>Crafted a modular brand system and immersive site that drove a 2.3x increase in enterprise demo requests.</p>
140
+ <div class="meta">
141
+ <span>Scope: Brand, Web</span>
142
+ <span>Timeline: 10 weeks</span>
143
+ </div>
144
+ </article>
145
+ <article class="work-card">
146
+ <div class="work-tag">Health</div>
147
+ <h3>Nova Care</h3>
148
+ <p>Built a HIPAA-ready patient portal with guided onboarding, cutting support tickets by 54% post-launch.</p>
149
+ <div class="meta">
150
+ <span>Scope: Product, QA</span>
151
+ <span>Timeline: 18 weeks</span>
152
+ </div>
153
+ </article>
154
+ </div>
155
+ </div>
156
+ </section>
157
+
158
+ <section class="metrics section">
159
+ <div class="container metrics-grid">
160
+ <div>
161
+ <p class="eyebrow">Proof in numbers</p>
162
+ <h2>Human-centered, measurable outcomes.</h2>
163
+ </div>
164
+ <dl>
165
+ <div>
166
+ <dt>1.9s</dt>
167
+ <dd>average LCP across shipped sites</dd>
168
+ </div>
169
+ <div>
170
+ <dt>92%</dt>
171
+ <dd>returning client partnerships</dd>
172
+ </div>
173
+ <div>
174
+ <dt>24/7</dt>
175
+ <dd>design & dev support coverage</dd>
176
+ </div>
177
+ <div>
178
+ <dt>AA</dt>
179
+ <dd>accessibility baseline on all deliveries</dd>
180
+ </div>
181
+ </dl>
182
+ </div>
183
+ </section>
184
+
185
+ <section id="testimonials" class="testimonials section" aria-labelledby="testimonials-title">
186
+ <div class="container">
187
+ <div class="section-header">
188
+ <p class="eyebrow">Client notes</p>
189
+ <h2 id="testimonials-title">Trusted by founders, CMOs, and product teams</h2>
190
+ </div>
191
+ <div class="testimonial-slider" aria-live="polite">
192
+ <button class="slider-btn prev" aria-label="Previous testimonial">&#8592;</button>
193
+ <div class="testimonial-track">
194
+ <figure>
195
+ <blockquote>“Brightwave is the rare partner that pushes strategy and execution equally. They feel like an embedded team.”</blockquote>
196
+ <figcaption>
197
+ <strong>Jonas Wirth</strong>, VP Product, Latticeworks
198
+ </figcaption>
199
+ </figure>
200
+ <figure>
201
+ <blockquote>“From research sprints to fully coded marketing pages, they helped us compress a six-month roadmap into three.”</blockquote>
202
+ <figcaption>
203
+ <strong>Camila Ortega</strong>, COO, Fluxion
204
+ </figcaption>
205
+ </figure>
206
+ <figure>
207
+ <blockquote>“Every deliverable was accessible, fast, and beautifully documented. They elevate our internal teams.”</blockquote>
208
+ <figcaption>
209
+ <strong>Priya Raman</strong>, Head of Design, Arclite
210
+ </figcaption>
211
+ </figure>
212
+ </div>
213
+ <button class="slider-btn next" aria-label="Next testimonial">&#8594;</button>
214
+ </div>
215
+ </div>
216
+ </section>
217
+
218
+ <section id="insights" class="insights section" aria-labelledby="insights-title">
219
+ <div class="container">
220
+ <div class="section-header">
221
+ <p class="eyebrow">Insights</p>
222
+ <h2 id="insights-title">Ideas shaping our work</h2>
223
+ </div>
224
+ <div class="insights-grid">
225
+ <article>
226
+ <p class="insight-date">May 14, 2024</p>
227
+ <h3>Designing for trust in AI copilots</h3>
228
+ <p>Frameworks for crafting transparent, explainable interfaces that keep humans in the loop.</p>
229
+ <a href="#" aria-label="Read more about designing for trust in AI copilots">Read more</a>
230
+ </article>
231
+ <article>
232
+ <p class="insight-date">Apr 30, 2024</p>
233
+ <h3>Systems thinking for marketing sites</h3>
234
+ <p>How component-driven storytelling unlocks faster experimentation without sacrificing brand.</p>
235
+ <a href="#" aria-label="Read more about systems thinking for marketing sites">Read more</a>
236
+ </article>
237
+ <article>
238
+ <p class="insight-date">Apr 10, 2024</p>
239
+ <h3>Performance as product strategy</h3>
240
+ <p>Why milliseconds matter and how we bake performance budgets into every engagement.</p>
241
+ <a href="#" aria-label="Read more about performance as product strategy">Read more</a>
242
+ </article>
243
+ </div>
244
+ </div>
245
+ </section>
246
+
247
+ <section id="contact" class="contact section" aria-labelledby="contact-title">
248
+ <div class="container contact-grid">
249
+ <div>
250
+ <p class="eyebrow">Let’s build together</p>
251
+ <h2 id="contact-title">Tell us about your next launch</h2>
252
+ <p>We reply within two business days. Share your goals, timeline, and any materials that help us understand the challenge.</p>
253
+ </div>
254
+ <form class="contact-form" novalidate>
255
+ <label for="name">Name</label>
256
+ <input id="name" name="name" type="text" placeholder="Your name" required>
257
+
258
+ <label for="email">Email</label>
259
+ <input id="email" name="email" type="email" placeholder="you@company.com" required>
260
+
261
+ <label for="company">Company</label>
262
+ <input id="company" name="company" type="text" placeholder="Organization or product">
263
+
264
+ <label for="message">Project details</label>
265
+ <textarea id="message" name="message" placeholder="Goals, timeline, budget range" required></textarea>
266
+
267
+ <button type="submit" class="btn solid">Send message</button>
268
+ <p class="form-status" role="status" aria-live="polite"></p>
269
+ </form>
270
+ </div>
271
+ </section>
272
+ </main>
273
+
274
+ <footer class="site-footer">
275
+ <div class="container footer-grid">
276
+ <div>
277
+ <div class="logo">
278
+ <a href="#top"><span class="logo-dot"></span>Brightwave</a>
279
+ </div>
280
+ <p>Designing resilient brands and products from NYC & Lisbon.</p>
281
+ </div>
282
+ <div>
283
+ <h4>Visit</h4>
284
+ <ul>
285
+ <li>257 Bowery, Suite 4</li>
286
+ <li>New York, NY 10002</li>
287
+ </ul>
288
+ </div>
289
+ <div>
290
+ <h4>Connect</h4>
291
+ <ul>
292
+ <li><a href="mailto:hello@brightwave.studio">hello@brightwave.studio</a></li>
293
+ <li><a href="https://www.linkedin.com" target="_blank" rel="noopener">LinkedIn</a></li>
294
+ <li><a href="https://twitter.com" target="_blank" rel="noopener">X (Twitter)</a></li>
295
+ </ul>
296
+ </div>
297
+ <div>
298
+ <h4>Newsletter</h4>
299
+ <form class="newsletter" novalidate>
300
+ <label class="sr-only" for="newsletter-email">Email</label>
301
+ <input id="newsletter-email" type="email" placeholder="Email address" required>
302
+ <button type="submit" class="btn ghost">Join</button>
303
+ </form>
304
+ </div>
305
+ </div>
306
+ <div class="container footer-bottom">
307
+ <small>&copy; <span id="year"></span> Brightwave Studio. All rights reserved.</small>
308
+ <a href="#top">Back to top</a>
309
+ </div>
310
+ </footer>
311
+
312
+ <script src="assets/js/main.js" defer></script>
313
+ </body>
314
+ </html>