|
| 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>Coming Soon | DLT - Distributed Ledger Technologies</title> |
| 7 | + <meta name="description" content="This page is coming soon. Distributed Ledger Technologies is building the future of digital finance."> |
| 8 | + <meta name="robots" content="noindex, nofollow"> |
| 9 | + <link rel="icon" type="image/svg+xml" href="images/favicon.svg"> |
| 10 | + |
| 11 | + <style> |
| 12 | + @font-face { |
| 13 | + font-family: 'Ethnocentric'; |
| 14 | + src: url('fonts/ethnocentric.otf') format('opentype'); |
| 15 | + font-weight: normal; |
| 16 | + font-style: normal; |
| 17 | + font-display: swap; |
| 18 | + } |
| 19 | + |
| 20 | + :root { |
| 21 | + --bg-primary: #0a0a0f; |
| 22 | + --neon-blue: #00d4ff; |
| 23 | + --neon-blue-dim: rgba(0, 212, 255, 0.3); |
| 24 | + --neon-blue-glow: rgba(0, 212, 255, 0.15); |
| 25 | + --text-primary: #ffffff; |
| 26 | + --text-secondary: #a0a0b0; |
| 27 | + --text-dim: #606070; |
| 28 | + --border: rgba(255, 255, 255, 0.08); |
| 29 | + } |
| 30 | + |
| 31 | + * { |
| 32 | + margin: 0; |
| 33 | + padding: 0; |
| 34 | + box-sizing: border-box; |
| 35 | + } |
| 36 | + |
| 37 | + body { |
| 38 | + font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif; |
| 39 | + background: var(--bg-primary); |
| 40 | + color: var(--text-primary); |
| 41 | + min-height: 100vh; |
| 42 | + display: flex; |
| 43 | + flex-direction: column; |
| 44 | + align-items: center; |
| 45 | + justify-content: center; |
| 46 | + text-align: center; |
| 47 | + padding: 24px; |
| 48 | + position: relative; |
| 49 | + overflow: hidden; |
| 50 | + } |
| 51 | + |
| 52 | + body::before { |
| 53 | + content: ''; |
| 54 | + position: absolute; |
| 55 | + top: 50%; |
| 56 | + left: 50%; |
| 57 | + transform: translate(-50%, -50%); |
| 58 | + width: 600px; |
| 59 | + height: 600px; |
| 60 | + background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 70%); |
| 61 | + pointer-events: none; |
| 62 | + animation: pulse 6s ease-in-out infinite; |
| 63 | + } |
| 64 | + |
| 65 | + @keyframes pulse { |
| 66 | + 0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } |
| 67 | + 50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); } |
| 68 | + } |
| 69 | + |
| 70 | + .content { |
| 71 | + position: relative; |
| 72 | + z-index: 1; |
| 73 | + max-width: 500px; |
| 74 | + } |
| 75 | + |
| 76 | + .logo { |
| 77 | + display: flex; |
| 78 | + align-items: center; |
| 79 | + justify-content: center; |
| 80 | + gap: 12px; |
| 81 | + margin-bottom: 48px; |
| 82 | + text-decoration: none; |
| 83 | + color: var(--text-primary); |
| 84 | + } |
| 85 | + |
| 86 | + .logo img { |
| 87 | + width: 48px; |
| 88 | + height: 48px; |
| 89 | + } |
| 90 | + |
| 91 | + .logo-text { |
| 92 | + font-family: 'Ethnocentric', -apple-system, sans-serif; |
| 93 | + font-size: 32px; |
| 94 | + color: var(--neon-blue); |
| 95 | + text-shadow: 0 0 20px var(--neon-blue-dim); |
| 96 | + letter-spacing: 2px; |
| 97 | + } |
| 98 | + |
| 99 | + .icon-container { |
| 100 | + width: 120px; |
| 101 | + height: 120px; |
| 102 | + margin: 0 auto 32px; |
| 103 | + background: var(--neon-blue-glow); |
| 104 | + border: 1px solid var(--neon-blue-dim); |
| 105 | + border-radius: 30px; |
| 106 | + display: flex; |
| 107 | + align-items: center; |
| 108 | + justify-content: center; |
| 109 | + animation: float 4s ease-in-out infinite; |
| 110 | + } |
| 111 | + |
| 112 | + @keyframes float { |
| 113 | + 0%, 100% { transform: translateY(0); } |
| 114 | + 50% { transform: translateY(-10px); } |
| 115 | + } |
| 116 | + |
| 117 | + .icon-container svg { |
| 118 | + width: 56px; |
| 119 | + height: 56px; |
| 120 | + stroke: var(--neon-blue); |
| 121 | + fill: none; |
| 122 | + stroke-width: 1.5; |
| 123 | + } |
| 124 | + |
| 125 | + h1 { |
| 126 | + font-size: 48px; |
| 127 | + font-weight: 700; |
| 128 | + margin-bottom: 16px; |
| 129 | + letter-spacing: -1px; |
| 130 | + } |
| 131 | + |
| 132 | + h1 span { |
| 133 | + color: var(--neon-blue); |
| 134 | + text-shadow: 0 0 30px var(--neon-blue-dim); |
| 135 | + } |
| 136 | + |
| 137 | + .subtitle { |
| 138 | + font-size: 18px; |
| 139 | + color: var(--text-secondary); |
| 140 | + margin-bottom: 40px; |
| 141 | + line-height: 1.6; |
| 142 | + } |
| 143 | + |
| 144 | + .btn { |
| 145 | + display: inline-flex; |
| 146 | + align-items: center; |
| 147 | + gap: 8px; |
| 148 | + padding: 14px 28px; |
| 149 | + background: var(--neon-blue); |
| 150 | + color: var(--bg-primary); |
| 151 | + border-radius: 8px; |
| 152 | + font-size: 15px; |
| 153 | + font-weight: 600; |
| 154 | + text-decoration: none; |
| 155 | + transition: all 0.3s ease; |
| 156 | + } |
| 157 | + |
| 158 | + .btn:hover { |
| 159 | + background: #00e5ff; |
| 160 | + box-shadow: 0 0 30px var(--neon-blue-dim); |
| 161 | + transform: translateY(-2px); |
| 162 | + } |
| 163 | + |
| 164 | + .btn svg { |
| 165 | + width: 18px; |
| 166 | + height: 18px; |
| 167 | + transition: transform 0.3s ease; |
| 168 | + } |
| 169 | + |
| 170 | + .btn:hover svg { |
| 171 | + transform: translateX(-4px); |
| 172 | + } |
| 173 | + |
| 174 | + .footer-note { |
| 175 | + position: absolute; |
| 176 | + bottom: 32px; |
| 177 | + left: 50%; |
| 178 | + transform: translateX(-50%); |
| 179 | + color: var(--text-dim); |
| 180 | + font-size: 14px; |
| 181 | + } |
| 182 | + |
| 183 | + .footer-note a { |
| 184 | + color: var(--neon-blue); |
| 185 | + text-decoration: none; |
| 186 | + } |
| 187 | + |
| 188 | + .footer-note a:hover { |
| 189 | + text-decoration: underline; |
| 190 | + } |
| 191 | + |
| 192 | + @media (max-width: 480px) { |
| 193 | + h1 { |
| 194 | + font-size: 36px; |
| 195 | + } |
| 196 | + |
| 197 | + .subtitle { |
| 198 | + font-size: 16px; |
| 199 | + } |
| 200 | + |
| 201 | + .icon-container { |
| 202 | + width: 100px; |
| 203 | + height: 100px; |
| 204 | + } |
| 205 | + |
| 206 | + .icon-container svg { |
| 207 | + width: 44px; |
| 208 | + height: 44px; |
| 209 | + } |
| 210 | + } |
| 211 | + </style> |
| 212 | +</head> |
| 213 | +<body> |
| 214 | + <div class="content"> |
| 215 | + <a href="/" class="logo"> |
| 216 | + <img src="images/logo.svg" alt="DLT Logo"> |
| 217 | + <span class="logo-text">DLT</span> |
| 218 | + </a> |
| 219 | + |
| 220 | + <div class="icon-container"> |
| 221 | + <svg viewBox="0 0 24 24"> |
| 222 | + <circle cx="12" cy="12" r="10"/> |
| 223 | + <path d="M12 6v6l4 2"/> |
| 224 | + </svg> |
| 225 | + </div> |
| 226 | + |
| 227 | + <h1>Coming <span>Soon</span></h1> |
| 228 | + |
| 229 | + <p class="subtitle">We're working on something exciting. This page will be available soon. In the meantime, explore our products and learn more about DLT.</p> |
| 230 | + |
| 231 | + <a href="/" class="btn"> |
| 232 | + <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"> |
| 233 | + <path d="M19 12H5M12 19l-7-7 7-7"/> |
| 234 | + </svg> |
| 235 | + Back to Home |
| 236 | + </a> |
| 237 | + </div> |
| 238 | + |
| 239 | + <p class="footer-note">© 2025 <a href="/">Distributed Ledger Technologies</a></p> |
| 240 | +</body> |
| 241 | +</html> |
0 commit comments