-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
667 lines (589 loc) · 17.9 KB
/
landing.html
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>llmkit - Prompt Management</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=JetBrains+Mono:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
:root {
--border-color: #000000;
--bg-color: #ffffff;
--text-color: #000000;
--accent-bg: #f5f5f5;
--code-bg: #000000;
--code-text: #ffffff;
--feature-bg: #f5f5f5;
--accent-text: #666666;
--button-bg: #000000;
--button-text: #ffffff;
}
[data-theme="dark"] {
--border-color: #ffffff;
--bg-color: #171717;
--text-color: #ffffff;
--accent-bg: #262626;
--code-bg: #000000;
--code-text: #ffffff;
--feature-bg: #262626;
--accent-text: #a3a3a3;
--button-bg: #ffffff;
--button-text: #000000;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.6;
font-family: 'JetBrains Mono', 'SF Mono', 'Menlo', 'Monaco', 'Courier New', monospace;
font-size: 15px;
font-weight: 400;
max-width: 1200px;
margin: 0 auto;
padding: 0;
transition: background-color 0.3s, color 0.3s;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
padding: 1.5rem;
border-bottom: 1px solid var(--border-color);
}
.no-border {
border-bottom: none;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.logo {
font-size: 1.5rem;
font-weight: 600;
text-decoration: none;
color: var(--text-color);
letter-spacing: -0.05em;
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo-icon {
width: 1.5rem;
height: 1.5rem;
}
nav {
display: flex;
gap: 1.5rem;
align-items: center;
}
nav a {
font-size: 0.875rem;
text-decoration: none;
color: var(--text-color);
transition: opacity 0.2s;
}
nav a:hover {
opacity: 0.7;
}
nav a.btn {
background-color: var(--button-bg);
color: var(--button-text);
padding: 0.5rem 1rem;
border: 2px solid var(--border-color);
}
nav a.btn:hover {
opacity: 0.9;
}
.hero {
padding: 6rem 0 4rem;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.1;
}
.hero p {
font-size: 1.25rem;
max-width: 650px;
margin: 0 auto 2.5rem;
color: var(--accent-text);
}
.btn {
background-color: var(--button-bg);
color: var(--button-text);
padding: 0.75rem 1.5rem;
text-decoration: none;
font-weight: 500;
display: inline-block;
font-size: 0.875rem;
transition: opacity 0.2s;
border: 2px solid var(--border-color);
}
.btn:hover {
opacity: 0.9;
}
.tag {
display: inline-block;
background-color: var(--accent-bg);
padding: 0.25rem 0.75rem;
border-radius: 99px;
font-size: 0.75rem;
margin-bottom: 1.5rem;
border: 1px solid var(--border-color);
}
.section-title {
font-size: 2rem;
margin-bottom: 3rem;
font-weight: 600;
letter-spacing: -0.03em;
text-align: center;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.feature {
padding: 2rem;
background-color: var(--feature-bg);
transition: transform 0.2s;
border: 2px solid var(--border-color);
}
.feature:hover {
transform: translateY(-5px);
}
.feature h3 {
margin-bottom: 1rem;
font-size: 1.25rem;
font-weight: 600;
}
.feature-icon {
font-size: 1.5rem;
margin-bottom: 1.25rem;
}
.terminal {
background-color: var(--code-bg);
color: var(--code-text);
padding: 1.5rem;
overflow: hidden;
margin: 2rem 0;
position: relative;
font-size: 0.875rem;
border: 2px solid var(--border-color);
}
.terminal pre {
white-space: pre-wrap;
line-height: 1.5;
}
.blink {
animation: blink 1s step-end infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
.open-source-banner {
text-align: center;
padding: 4rem 1.5rem;
background-color: var(--accent-bg);
margin: 4rem 0;
}
.open-source-banner h2 {
margin-bottom: 1rem;
font-size: 1.75rem;
font-weight: 600;
letter-spacing: -0.03em;
}
.open-source-banner p {
margin-bottom: 2rem;
max-width: 650px;
margin-left: auto;
margin-right: auto;
color: var(--accent-text);
}
.providers {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin: 3rem 0;
}
.provider {
padding: 0.75rem 1.25rem;
border: 2px solid var(--border-color);
font-size: 0.875rem;
}
.how-it-works {
margin: 3rem 0;
}
.pricing-plans {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 900px;
margin: 0 auto;
}
.plan {
padding: 2.5rem;
border: 2px solid var(--border-color);
transition: transform 0.2s;
}
.plan.featured {
background-color: var(--accent-bg);
}
.plan:hover {
transform: translateY(-5px);
}
.plan h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
font-weight: 600;
}
.plan-price {
font-size: 2.5rem;
margin: 1.5rem 0;
font-weight: 700;
letter-spacing: -0.05em;
}
.plan-features {
margin: 1.5rem 0;
list-style-type: none;
}
.plan-features li {
margin-bottom: 0.75rem;
padding-left: 1.5rem;
position: relative;
}
.plan-features li::before {
content: "–";
position: absolute;
left: 0;
}
.consulting-services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.consulting-service {
padding: 2rem;
background-color: var(--feature-bg);
border: 2px solid var(--border-color);
}
.consulting-service h4 {
margin-bottom: 1rem;
font-size: 1.25rem;
font-weight: 600;
}
footer {
text-align: center;
padding: 4rem 1.5rem;
font-size: 0.875rem;
color: var(--accent-text);
}
footer a {
color: var(--accent-text);
text-decoration: none;
margin: 0 0.75rem;
transition: color 0.2s;
}
footer a:hover {
color: var(--text-color);
}
code {
background-color: var(--accent-bg);
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-size: 0.875rem;
}
.cta-section {
text-align: center;
padding: 6rem 1.5rem;
}
.cta-section h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
font-weight: 600;
letter-spacing: -0.03em;
}
.cta-section p {
margin-bottom: 2rem;
max-width: 650px;
margin-left: auto;
margin-right: auto;
color: var(--accent-text);
}
.theme-toggle {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 100;
background-color: transparent;
color: var(--text-color);
border: none;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: color 0.3s;
opacity: 0.7;
}
.theme-toggle:hover {
opacity: 1;
}
@media (max-width: 768px) {
header {
flex-direction: column;
align-items: flex-start;
gap: 1.5rem;
}
nav {
width: 100%;
justify-content: space-between;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.125rem;
}
.section-title {
font-size: 1.75rem;
}
}
</style>
</head>
<body>
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle dark mode">
<svg id="moon-icon" style="display: block; width: 1.2rem; height: 1.2rem;" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path>
</svg>
<svg id="sun-icon" style="display: none; width: 1.2rem; height: 1.2rem;" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"></path>
</svg>
</button>
<div class="container">
<header>
<a href="#" class="logo">
<svg class="logo-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z"></path>
<path d="M6.5 11.5l6 6"></path>
</svg>
llmkit
</a>
<nav>
<a href="#features">Features</a>
<a href="#how-it-works">How It Works</a>
<a href="#pricing">Pricing</a>
<a href="#consulting">Consulting</a>
<a href="#" class="btn">Contact</a>
</nav>
</header>
<div class="hero">
<div class="tag">Open Source</div>
<h1>Prompt Management<br>for the Modern Stack</h1>
<p>One server to manage, test, evaluate, and run prompts across multiple LLM providers.</p>
<a href="#" class="btn">Get Started</a>
</div>
</div>
<div class="container">
<div class="terminal">
<pre>> Installing llmkit...
> Setup complete
> Running first prompt test
TEST-PROMPT [gemini-2.0-flash-001 · gemini]
Evaluating response...
┌─────────────────────────────┐
│ Response Quality: 9.2/10 │
│ Latency: 230ms │
│ Token Usage: 145/256 │
└─────────────────────────────┘
> Ready for more commands<span class="blink">_</span></pre>
</div>
</div>
<div class="container" id="features">
<h2 class="section-title">Features</h2>
<div class="features">
<div class="feature">
<div class="feature-icon">📝</div>
<h3>Prompt Management</h3>
<p>Create, organize, and version control your prompts with a clean, focused interface.</p>
</div>
<div class="feature">
<div class="feature-icon">🧪</div>
<h3>Prompt Testing</h3>
<p>Test prompts against multiple parameters and see results in real-time.</p>
</div>
<div class="feature">
<div class="feature-icon">📊</div>
<h3>Prompt Evaluation</h3>
<p>Evaluate performance with actionable insights to improve quality and efficiency.</p>
</div>
<div class="feature">
<div class="feature-icon">🚀</div>
<h3>Prompt Inference</h3>
<p>Run prompts through a unified API connecting to multiple LLM providers.</p>
</div>
</div>
</div>
<div class="open-source-banner">
<h2>100% Open Source</h2>
<p>llmkit is fully open source. Contribute to the project, customize it for your needs, or self-host.</p>
<a href="#" class="btn">View on GitHub</a>
</div>
<div class="container" id="how-it-works">
<h2 class="section-title">One Server, Many Providers</h2>
<div class="how-it-works">
<div class="providers">
<div class="provider">OpenAI</div>
<div class="provider">Gemini</div>
<div class="provider">Claude</div>
<div class="provider">Llama</div>
<div class="provider">Mistral</div>
<div class="provider">+ More</div>
</div>
<div class="terminal">
<pre>> llmkit setup
> Adding providers...
┌─────────────────────────────┐
│ Provider: OpenAI │
│ Status: Connected │
│ Models: 12 available │
└─────────────────────────────┘
┌─────────────────────────────┐
│ Provider: Gemini │
│ Status: Connected │
│ Models: 4 available │
└─────────────────────────────┘
> All systems operational<span class="blink">_</span></pre>
</div>
</div>
</div>
<div class="container" id="pricing">
<h2 class="section-title">Pricing</h2>
<div class="pricing-plans">
<div class="plan">
<h3>Small Teams</h3>
<div class="plan-price">$50/mo</div>
<p>Perfect for small teams and startups</p>
<ul class="plan-features">
<li>Unlimited prompts</li>
<li>All LLM providers</li>
<li>Advanced analytics</li>
<li>Team collaboration</li>
<li>Email support</li>
</ul>
<div style="margin-top: 2rem;">
<a href="#" class="btn">Get Started</a>
</div>
</div>
<div class="plan featured">
<h3>Enterprise</h3>
<div class="plan-price">$200/mo</div>
<p>For larger teams and organizations</p>
<ul class="plan-features">
<li>Everything in Small Teams</li>
<li>Custom deployment</li>
<li>Advanced security features</li>
<li>Dedicated support</li>
<li>Custom integrations</li>
<li>Environment setup included</li>
</ul>
<div style="margin-top: 2rem;">
<a href="#" class="btn">Contact Us</a>
</div>
</div>
</div>
<p style="text-align: center; margin-top: 3rem; color: var(--accent-text); max-width: 650px; margin-left: auto; margin-right: auto;">
Need to self-host? Contact us for enterprise setup. We'll help you get your environment configured.
</p>
</div>
<div class="container" id="consulting">
<h2 class="section-title">Consulting Services</h2>
<p style="text-align: center; max-width: 650px; margin: 0 auto 3rem; color: var(--accent-text);">
Our team offers specialized consulting services to help you get the most out of your LLM implementations
</p>
<div class="consulting-services">
<div class="consulting-service">
<h4>Prompt Engineering</h4>
<p>Expert guidance on crafting effective prompts that deliver consistent, high-quality results.</p>
</div>
<div class="consulting-service">
<h4>LLM Integration</h4>
<p>Custom solutions for integrating LLMs into your existing workflows and applications.</p>
</div>
<div class="consulting-service">
<h4>Performance Optimization</h4>
<p>Strategies to reduce costs and improve response quality across your LLM implementations.</p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<a href="#" class="btn">Contact for Consulting</a>
</div>
</div>
<div class="container no-border">
<div class="cta-section">
<h2>Ready to streamline your LLM workflow?</h2>
<p>Join developers and teams who are managing their prompts efficiently with llmkit.</p>
<a href="#" class="btn">Get Started</a>
</div>
</div>
<footer>
<p>© 2025 llmkit - Open Source Prompt Management</p>
<p style="margin-top: 1.5rem;">
<a href="#">GitHub</a>
<a href="#">Documentation</a>
<a href="#">Terms</a>
<a href="#">Privacy</a>
<a href="#">Contact</a>
</p>
</footer>
<script>
// Theme toggle functionality
document.addEventListener('DOMContentLoaded', () => {
const themeToggle = document.getElementById('theme-toggle');
const moonIcon = document.getElementById('moon-icon');
const sunIcon = document.getElementById('sun-icon');
// Check for saved theme preference or respect OS theme settings
const prefersDarkScheme = window.matchMedia('(prefers-color-scheme: dark)');
// Check if theme is already saved in localStorage
let currentTheme = localStorage.getItem('theme');
if (!currentTheme) {
// If no theme is saved, use the OS preference
currentTheme = prefersDarkScheme.matches ? 'dark' : 'light';
}
// Set initial theme
document.documentElement.setAttribute('data-theme', currentTheme);
updateIcons(currentTheme);
// Theme toggle click handler
themeToggle.addEventListener('click', () => {
let newTheme = document.documentElement.getAttribute('data-theme') === 'light' ? 'dark' : 'light';
document.documentElement.setAttribute('data-theme', newTheme);
localStorage.setItem('theme', newTheme);
updateIcons(newTheme);
});
// Update icon visibility based on current theme
function updateIcons(theme) {
if (theme === 'dark') {
moonIcon.style.display = 'none';
sunIcon.style.display = 'block';
} else {
moonIcon.style.display = 'block';
sunIcon.style.display = 'none';
}
}
});
</script>
</body>
</html>