Skip to content

Commit ec08d3a

Browse files
committed
Update sitemap dates and add OG image for social sharing
1 parent 8d6300e commit ec08d3a

3 files changed

Lines changed: 68 additions & 1 deletion

File tree

assets/og-image.html

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
* { margin: 0; padding: 0; box-sizing: border-box; }
6+
body {
7+
width: 1200px;
8+
height: 630px;
9+
background: #0a0a0f;
10+
font-family: 'JetBrains Mono', monospace;
11+
display: flex;
12+
flex-direction: column;
13+
justify-content: center;
14+
align-items: center;
15+
color: #e8e8f0;
16+
position: relative;
17+
overflow: hidden;
18+
}
19+
body::before {
20+
content: '';
21+
position: absolute;
22+
top: 0; left: 0; right: 0; bottom: 0;
23+
background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
24+
background-size: 24px 24px;
25+
}
26+
body::after {
27+
content: '';
28+
position: absolute;
29+
top: 50%; left: 50%;
30+
transform: translate(-50%, -50%);
31+
width: 600px; height: 600px;
32+
background: radial-gradient(circle, rgba(124,106,255,0.15) 0%, transparent 70%);
33+
}
34+
.content { position: relative; z-index: 1; text-align: center; }
35+
.logo { font-size: 4rem; font-weight: 700; margin-bottom: 1rem; }
36+
.logo span { background: linear-gradient(135deg, #7c6aff, #00d4aa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
37+
.version { font-size: 0.9rem; color: #6b6b80; margin-bottom: 2rem; }
38+
.version span { background: rgba(124,106,255,0.15); color: #7c6aff; padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(124,106,255,0.3); }
39+
.tagline { font-size: 1.4rem; color: #9898a8; max-width: 800px; line-height: 1.5; }
40+
.tagline strong { color: #e8e8f0; }
41+
.terminal-preview {
42+
margin-top: 2rem;
43+
background: #111118;
44+
border: 1px solid rgba(255,255,255,0.07);
45+
border-radius: 8px;
46+
padding: 1rem 2rem;
47+
font-size: 0.95rem;
48+
}
49+
.terminal-preview .prompt { color: #00d4aa; }
50+
.terminal-preview .cmd { color: #e8e8f0; }
51+
.brand { position: absolute; bottom: 30px; font-size: 0.8rem; color: #6b6b80; }
52+
.brand a { color: #7c6aff; text-decoration: none; }
53+
</style>
54+
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
55+
</head>
56+
<body>
57+
<div class="content">
58+
<div class="logo"><span>Kodra</span></div>
59+
<div class="version"><span>v0.5.2</span> One-Command Azure Dev Environment</div>
60+
<div class="tagline">From <strong>fresh Ubuntu</strong> to <strong>azd up</strong> in 15 minutes</div>
61+
<div class="terminal-preview">
62+
<span class="prompt">$</span> <span class="cmd">wget -qO- kodra.codetocloud.io/install.sh | bash</span>
63+
</div>
64+
</div>
65+
<div class="brand">kodra.codetocloud.io — by <a href="#">Code To Cloud</a></div>
66+
</body>
67+
</html>

assets/og-image.png

136 KB
Loading

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
44
<url>
55
<loc>https://kodra.codetocloud.io/</loc>
6-
<lastmod>2026-05-02</lastmod>
6+
<lastmod>2026-05-03</lastmod>
77
<changefreq>weekly</changefreq>
88
<priority>1.0</priority>
99
<image:image>

0 commit comments

Comments
 (0)