-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (150 loc) · 8.7 KB
/
index.html
File metadata and controls
160 lines (150 loc) · 8.7 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
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coming Soon</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=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Theme Toggle -->
<button class="theme-toggle" id="themeToggle" aria-label="Toggle theme">
<span class="toggle-label">
<svg class="t-icon" viewBox="0 0 20 20" fill="currentColor">
<path
d="M10 2a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1zm4.22 1.78a1 1 0 0 1 0 1.41l-.71.71a1 1 0 1 1-1.41-1.41l.71-.71a1 1 0 0 1 1.41 0zM18 9a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2h1zm-1.78 5.22a1 1 0 0 1-1.41 0l-.71-.71a1 1 0 1 1 1.41-1.41l.71.71a1 1 0 0 1 0 1.41zM10 16a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1zm-5.22-1.78a1 1 0 0 1 0-1.41l.71-.71A1 1 0 1 1 6.9 13.5l-.71.71a1 1 0 0 1-1.41 0zM4 11a1 1 0 1 1 0-2H3a1 1 0 1 1 0 2H4zm1.78-6.22a1 1 0 0 1 1.41 0l.71.71A1 1 0 0 1 6.49 6.9l-.71-.71a1 1 0 0 1 0-1.41zM10 7a3 3 0 1 1 0 6 3 3 0 0 1 0-6z"
/>
</svg>
</span>
<span class="toggle-track">
<span class="toggle-thumb"></span>
</span>
<span class="toggle-label">
<svg class="t-icon" viewBox="0 0 20 20" fill="currentColor"><path d="M17.293 13.293A8 8 0 0 1 6.707 2.707a8.001 8.001 0 1 0 10.586 10.586z" /></svg>
</span>
</button>
<div class="layout">
<!-- LEFT PANEL — visual / countdown -->
<div class="panel-left">
<div class="bg-image"></div>
<div class="bg-overlay"></div>
<!-- Floating geometric shapes -->
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="countdown-container">
<p class="countdown-label">Time until launch</p>
<div class="countdown" id="countdown">
<div class="count-unit">
<span class="count-number" id="weeks">00</span>
<span class="count-name">Weeks</span>
</div>
<div class="count-sep">:</div>
<div class="count-unit">
<span class="count-number" id="days">00</span>
<span class="count-name">Days</span>
</div>
<div class="count-sep">:</div>
<div class="count-unit">
<span class="count-number" id="hours">00</span>
<span class="count-name">Hours</span>
</div>
<div class="count-sep">:</div>
<div class="count-unit">
<span class="count-number" id="minutes">00</span>
<span class="count-name">Minutes</span>
</div>
<div class="count-sep">:</div>
<div class="count-unit">
<span class="count-number" id="seconds">00</span>
<span class="count-name">Seconds</span>
</div>
</div>
<div class="launch-date">31 · 12 · 2026</div>
</div>
</div>
<!-- RIGHT PANEL — content -->
<div class="panel-right">
<div class="right-inner">
<!-- Logo -->
<div class="logo">
<svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
<polygon points="26,4 48,44 4,44" fill="none" stroke="currentColor" stroke-width="1.5" />
<polyline points="14,32 26,14 38,32" fill="none" stroke="currentColor" stroke-width="1.5" />
<line x1="10" y1="38" x2="42" y2="38" stroke="currentColor" stroke-width="1.5" />
<circle cx="26" cy="26" r="4" fill="none" stroke="var(--accent)" stroke-width="1.5" />
</svg>
<span class="logo-text">AivenIO<strong>DBA</strong></span>
</div>
<!-- Hero text -->
<div class="hero-text">
<p class="eyebrow">Stay Tuned</p>
<h1>We Will<br />Launch Soon</h1>
<p class="subtitle">Something extraordinary is in the making. Subscribe to be the first to know when we go live.</p>
</div>
<!-- Community CTA -->
<div class="community-cta">
<p class="cta-desc">Join the conversation while we build. Ask questions, share ideas, and stay in the loop with our community on GitHub.</p>
<a href="https://github.com/orgs/aivenio/discussions" target="_blank" rel="noopener noreferrer" class="btn-community">
<svg class="btn-icon" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"
/>
</svg>
Join the Community
</a>
</div>
<!-- Progress bar -->
<div class="progress-section">
<div class="progress-meta">
<span>Development progress</span>
<span>72%</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="--pct: 72%"></div>
</div>
</div>
<!-- Social links -->
<div class="social-links">
<a href="#" class="social-link" aria-label="Facebook">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" />
</svg>
</a>
<a href="#" class="social-link" aria-label="Twitter / X">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4l16 16M4 20 20 4" />
</svg>
</a>
<a href="#" class="social-link" aria-label="Instagram">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5" />
<circle cx="12" cy="12" r="4" />
<circle cx="17.5" cy="6.5" r="1" fill="currentColor" stroke="none" />
</svg>
</a>
<a href="#" class="social-link" aria-label="YouTube">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path
d="M22.54 6.42a2.78 2.78 0 0 0-1.95-1.96C18.88 4 12 4 12 4s-6.88 0-8.59.46A2.78 2.78 0 0 0 1.46 6.42 29 29 0 0 0 1 12a29 29 0 0 0 .46 5.58 2.78 2.78 0 0 0 1.95 1.96C5.12 20 12 20 12 20s6.88 0 8.59-.46a2.78 2.78 0 0 0 1.95-1.96A29 29 0 0 0 23 12a29 29 0 0 0-.46-5.58z"
/>
<polygon points="9.75 15.02 15.5 12 9.75 8.98 9.75 15.02" fill="currentColor" stroke="none" />
</svg>
</a>
<a href="#" class="social-link" aria-label="Pinterest">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path
d="M12 2C6.48 2 2 6.48 2 12c0 4.24 2.65 7.86 6.39 9.29-.09-.78-.17-1.98.03-2.83.19-.77 1.26-5.34 1.26-5.34s-.32-.64-.32-1.59c0-1.49.87-2.6 1.94-2.6.92 0 1.36.69 1.36 1.52 0 .93-.59 2.31-.9 3.6-.26 1.07.54 1.94 1.59 1.94 1.91 0 3.18-2.45 3.18-5.35 0-2.2-1.49-3.85-3.93-3.85-2.87 0-4.65 2.15-4.65 4.55 0 .82.24 1.4.61 1.84.17.2.2.28.13.51-.06.2-.2.78-.27 1-.09.32-.36.44-.66.32-1.85-.76-2.72-2.8-2.72-5.07 0-3.74 3.14-8.21 9.39-8.21 5.01 0 8.29 3.62 8.29 7.5 0 5.13-2.84 8.96-7.02 8.96-1.4 0-2.72-.75-3.17-1.61l-.86 3.27c-.31 1.16-.87 2.33-1.41 3.29.87.27 1.79.41 2.74.41 5.52 0 10-4.48 10-10S17.52 2 12 2z"
/>
</svg>
</a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>