Skip to content

Commit 0f97cd2

Browse files
authored
new Site
1 parent 202572a commit 0f97cd2

File tree

1 file changed

+181
-0
lines changed

1 file changed

+181
-0
lines changed

index.html

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
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>CacheBolt</title>
7+
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;600&display=swap" rel="stylesheet">
8+
<style>
9+
:root {
10+
--bg: #0d1117;
11+
--glass-bg: rgba(255, 255, 255, 0.05);
12+
--glass-border: rgba(255, 255, 255, 0.08);
13+
--blur: blur(20px);
14+
--text-primary: #e5e5e5;
15+
--text-muted: #8b949e;
16+
--accent: #00e5ff;
17+
--accent-hover: #33f1ff;
18+
--card-radius: 1.2rem;
19+
}
20+
21+
* {
22+
margin: 0;
23+
padding: 0;
24+
box-sizing: border-box;
25+
}
26+
27+
body {
28+
font-family: 'Inter', sans-serif;
29+
background: var(--bg);
30+
color: var(--text-primary);
31+
display: flex;
32+
flex-direction: column;
33+
align-items: center;
34+
padding: 2rem 1rem;
35+
gap: 3rem;
36+
}
37+
38+
header {
39+
text-align: center;
40+
}
41+
42+
header h1 {
43+
font-family: 'Orbitron', sans-serif;
44+
font-size: 3.2rem;
45+
color: var(--accent);
46+
margin-bottom: 0.5rem;
47+
}
48+
49+
header p {
50+
font-size: 1.2rem;
51+
color: var(--text-muted);
52+
max-width: 600px;
53+
margin: 0 auto;
54+
}
55+
56+
.card {
57+
max-width: 960px;
58+
width: 100%;
59+
background: var(--glass-bg);
60+
border: 1px solid var(--glass-border);
61+
border-radius: var(--card-radius);
62+
backdrop-filter: var(--blur);
63+
-webkit-backdrop-filter: var(--blur);
64+
padding: 2rem;
65+
text-align: center;
66+
}
67+
68+
.card h2 {
69+
color: var(--accent);
70+
font-size: 1.8rem;
71+
margin-bottom: 1rem;
72+
}
73+
74+
.card p {
75+
font-size: 1rem;
76+
line-height: 1.6;
77+
margin-bottom: 1rem;
78+
color: var(--text-primary);
79+
}
80+
81+
.features {
82+
display: grid;
83+
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
84+
gap: 1.5rem;
85+
margin-top: 2rem;
86+
}
87+
88+
.feature {
89+
background: var(--glass-bg);
90+
border: 1px solid var(--glass-border);
91+
border-radius: var(--card-radius);
92+
padding: 1.5rem;
93+
backdrop-filter: var(--blur);
94+
text-align: left;
95+
}
96+
97+
.feature h3 {
98+
color: var(--accent);
99+
font-size: 1.2rem;
100+
margin-bottom: 0.5rem;
101+
}
102+
103+
.feature p {
104+
color: var(--text-muted);
105+
font-size: 0.95rem;
106+
}
107+
108+
footer {
109+
text-align: center;
110+
font-size: 0.9rem;
111+
color: var(--text-muted);
112+
margin-top: 2rem;
113+
}
114+
115+
a.button {
116+
display: inline-block;
117+
margin-top: 1rem;
118+
padding: 0.75rem 1.5rem;
119+
background-color: var(--accent);
120+
color: #0d1117;
121+
border-radius: 999px;
122+
text-decoration: none;
123+
font-weight: 600;
124+
transition: background 0.3s ease;
125+
}
126+
127+
a.button:hover {
128+
background-color: var(--accent-hover);
129+
}
130+
</style>
131+
</head>
132+
<body>
133+
134+
<header>
135+
<h1>⚡ CacheBolt</h1>
136+
<p>A high-speed reverse proxy with smart caching and cloud-powered persistence. Simple to run, powerful at scale.</p>
137+
</header>
138+
139+
<div class="card">
140+
<h2>🚀 Why CacheBolt?</h2>
141+
<p><strong>CacheBolt</strong> boosts your API or file delivery with lightning-fast response times and reduced backend pressure.</p>
142+
<p>Whether you're running a microservice or a heavy data pipeline, CacheBolt keeps your most requested content close and always ready.</p>
143+
<a class="button" href="https://github.com/your-org/cachebolt" target="_blank">View on GitHub</a>
144+
</div>
145+
146+
<div class="card">
147+
<h2>✨ Features at a Glance</h2>
148+
<div class="features">
149+
<div class="feature">
150+
<h3>🔁 Reverse Proxy</h3>
151+
<p>Handles HTTP traffic and routes intelligently, built on Rust's Axum and Tokio.</p>
152+
</div>
153+
<div class="feature">
154+
<h3>⚡ In-Memory Caching</h3>
155+
<p>Ultra-fast cache with LRU eviction to serve your hot paths instantly.</p>
156+
</div>
157+
<div class="feature">
158+
<h3>☁️ Cloud Storage</h3>
159+
<p>Synchronize cache with S3, GCS, Azure, or local disk. Built-in persistence.</p>
160+
</div>
161+
<div class="feature">
162+
<h3>⏱️ Latency Failover</h3>
163+
<p>Reroute requests when backends are slow — automatically and gracefully.</p>
164+
</div>
165+
<div class="feature">
166+
<h3>📉 Smart Eviction</h3>
167+
<p>Evicts memory cache when thresholds are reached, keeping performance optimal.</p>
168+
</div>
169+
<div class="feature">
170+
<h3>📊 Prometheus Metrics</h3>
171+
<p>Exposes detailed metrics to monitor usage, latency, and cache hit rates.</p>
172+
</div>
173+
</div>
174+
</div>
175+
176+
<footer>
177+
&copy; 2025 CacheBolt — Engineered by Matías Salinas
178+
</footer>
179+
180+
</body>
181+
</html>

0 commit comments

Comments
 (0)