89 lines
2.2 KiB
HTML
89 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GreenLeaf Tech — Launching Soon</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
background: linear-gradient(135deg, #0f3d1e 0%, #1a5c2a 40%, #0d4d1f 100%);
|
|
color: #d4edda;
|
|
font-family: 'Trebuchet MS', Arial, sans-serif;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
.leaf {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
filter: drop-shadow(0 0 12px rgba(72,199,100,0.5));
|
|
}
|
|
.brand {
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.3em;
|
|
text-transform: uppercase;
|
|
color: #6fcf7c;
|
|
margin-bottom: 3rem;
|
|
}
|
|
h1 {
|
|
font-size: clamp(2.2rem, 7vw, 5rem);
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
text-shadow: 0 2px 20px rgba(0,0,0,0.4);
|
|
}
|
|
h1 span { color: #48c764; }
|
|
.body-text {
|
|
font-size: 1.1rem;
|
|
color: #a8d5b0;
|
|
max-width: 480px;
|
|
line-height: 1.8;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.badge-row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.badge {
|
|
background: rgba(72, 199, 100, 0.15);
|
|
border: 1px solid rgba(72, 199, 100, 0.4);
|
|
color: #6fcf7c;
|
|
padding: 0.4rem 1.1rem;
|
|
border-radius: 999px;
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
.footer-line {
|
|
font-size: 0.75rem;
|
|
color: #5a8c65;
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="leaf">🌿</div>
|
|
<p class="brand">GreenLeaf Tech</p>
|
|
<h1>We're Launching<br><span>Soon</span></h1>
|
|
<p class="body-text">
|
|
We're building a greener future through sustainable technology.
|
|
Our platform is almost ready — join us as we grow something remarkable.
|
|
</p>
|
|
<div class="badge-row">
|
|
<span class="badge">Sustainable Cloud</span>
|
|
<span class="badge">Carbon Neutral</span>
|
|
<span class="badge">Open Source</span>
|
|
</div>
|
|
<p class="footer-line">GreenLeaf Tech © 2025 — Growing Tomorrow, Today</p>
|
|
</body>
|
|
</html>
|