|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <style> |
| 6 | + @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap'); |
| 7 | + * { margin: 0; padding: 0; box-sizing: border-box; } |
| 8 | + .og-card { |
| 9 | + width: 1200px; |
| 10 | + height: 630px; |
| 11 | + background: #0a0a0f; |
| 12 | + position: relative; |
| 13 | + overflow: hidden; |
| 14 | + display: flex; |
| 15 | + flex-direction: column; |
| 16 | + padding: 60px 70px; |
| 17 | + font-family: 'Inter', system-ui, sans-serif; |
| 18 | + } |
| 19 | + .og-card::before { |
| 20 | + content: ''; |
| 21 | + position: absolute; |
| 22 | + inset: 0; |
| 23 | + background-image: |
| 24 | + linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), |
| 25 | + linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); |
| 26 | + background-size: 40px 40px; |
| 27 | + } |
| 28 | + .glow-1 { |
| 29 | + position: absolute; |
| 30 | + top: -120px; |
| 31 | + right: -80px; |
| 32 | + width: 500px; |
| 33 | + height: 500px; |
| 34 | + background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); |
| 35 | + pointer-events: none; |
| 36 | + } |
| 37 | + .glow-2 { |
| 38 | + position: absolute; |
| 39 | + bottom: -150px; |
| 40 | + left: -100px; |
| 41 | + width: 600px; |
| 42 | + height: 600px; |
| 43 | + background: radial-gradient(circle, rgba(249, 115, 22, 0.10) 0%, transparent 70%); |
| 44 | + pointer-events: none; |
| 45 | + } |
| 46 | + .top-section { |
| 47 | + position: relative; |
| 48 | + z-index: 1; |
| 49 | + display: flex; |
| 50 | + align-items: center; |
| 51 | + gap: 20px; |
| 52 | + margin-bottom: 28px; |
| 53 | + } |
| 54 | + .icon { font-size: 52px; line-height: 1; } |
| 55 | + .title { |
| 56 | + font-size: 64px; |
| 57 | + font-weight: 900; |
| 58 | + color: #ffffff; |
| 59 | + letter-spacing: -2px; |
| 60 | + line-height: 1; |
| 61 | + } |
| 62 | + .tagline { |
| 63 | + position: relative; |
| 64 | + z-index: 1; |
| 65 | + font-size: 26px; |
| 66 | + font-weight: 500; |
| 67 | + color: rgba(255,255,255,0.6); |
| 68 | + line-height: 1.4; |
| 69 | + margin-bottom: 40px; |
| 70 | + max-width: 700px; |
| 71 | + } |
| 72 | + .command-block { |
| 73 | + position: relative; |
| 74 | + z-index: 1; |
| 75 | + background: rgba(255,255,255,0.05); |
| 76 | + border: 1px solid rgba(255,255,255,0.08); |
| 77 | + border-radius: 12px; |
| 78 | + padding: 20px 28px; |
| 79 | + margin-bottom: 40px; |
| 80 | + display: inline-flex; |
| 81 | + align-items: center; |
| 82 | + gap: 12px; |
| 83 | + } |
| 84 | + .prompt { |
| 85 | + color: rgba(59, 130, 246, 0.8); |
| 86 | + font-family: 'JetBrains Mono', monospace; |
| 87 | + font-size: 22px; |
| 88 | + font-weight: 500; |
| 89 | + } |
| 90 | + .command { |
| 91 | + color: rgba(255,255,255,0.85); |
| 92 | + font-family: 'JetBrains Mono', monospace; |
| 93 | + font-size: 22px; |
| 94 | + font-weight: 500; |
| 95 | + } |
| 96 | + .tools-row { |
| 97 | + position: relative; |
| 98 | + z-index: 1; |
| 99 | + display: flex; |
| 100 | + gap: 12px; |
| 101 | + flex-wrap: wrap; |
| 102 | + margin-top: auto; |
| 103 | + margin-bottom: 0; |
| 104 | + } |
| 105 | + .tool-pill { |
| 106 | + display: flex; |
| 107 | + align-items: center; |
| 108 | + gap: 8px; |
| 109 | + padding: 10px 20px; |
| 110 | + background: rgba(255,255,255,0.06); |
| 111 | + border: 1px solid rgba(255,255,255,0.08); |
| 112 | + border-radius: 100px; |
| 113 | + font-size: 16px; |
| 114 | + font-weight: 600; |
| 115 | + color: rgba(255,255,255,0.7); |
| 116 | + font-family: 'Inter', sans-serif; |
| 117 | + } |
| 118 | + .tool-pill .dot { |
| 119 | + width: 8px; |
| 120 | + height: 8px; |
| 121 | + border-radius: 50%; |
| 122 | + flex-shrink: 0; |
| 123 | + } |
| 124 | + .dot-blue { background: #3b82f6; } |
| 125 | + .dot-orange { background: #f97316; } |
| 126 | + .dot-green { background: #22c55e; } |
| 127 | + .dot-purple { background: #a855f7; } |
| 128 | + .dot-pink { background: #ec4899; } |
| 129 | + .bottom-bar { |
| 130 | + position: absolute; |
| 131 | + bottom: 0; |
| 132 | + left: 0; |
| 133 | + right: 0; |
| 134 | + height: 4px; |
| 135 | + background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f97316); |
| 136 | + } |
| 137 | + .badge { |
| 138 | + position: relative; |
| 139 | + z-index: 1; |
| 140 | + display: inline-flex; |
| 141 | + align-items: center; |
| 142 | + gap: 8px; |
| 143 | + padding: 6px 14px; |
| 144 | + background: rgba(55, 118, 171, 0.12); |
| 145 | + border: 1px solid rgba(55, 118, 171, 0.3); |
| 146 | + border-radius: 6px; |
| 147 | + font-size: 14px; |
| 148 | + font-weight: 600; |
| 149 | + color: #60a5fa; |
| 150 | + font-family: 'JetBrains Mono', monospace; |
| 151 | + margin-bottom: 20px; |
| 152 | + letter-spacing: 0.5px; |
| 153 | + } |
| 154 | + </style> |
| 155 | +</head> |
| 156 | +<body> |
| 157 | + <div class="og-card"> |
| 158 | + <div class="glow-1"></div> |
| 159 | + <div class="glow-2"></div> |
| 160 | + <div class="badge">PYTHON CLI TOOL</div> |
| 161 | + <div class="top-section"> |
| 162 | + <span class="icon">⚡</span> |
| 163 | + <span class="title">quickforge</span> |
| 164 | + </div> |
| 165 | + <div class="tagline"> |
| 166 | + Modern Python project bootstrapper with 2025's best toolchain. One command, production-ready. |
| 167 | + </div> |
| 168 | + <div class="command-block"> |
| 169 | + <span class="prompt">$</span> |
| 170 | + <span class="command">quickforge new myproject</span> |
| 171 | + </div> |
| 172 | + <div class="tools-row"> |
| 173 | + <div class="tool-pill"><span class="dot dot-orange"></span>uv</div> |
| 174 | + <div class="tool-pill"><span class="dot dot-blue"></span>ruff</div> |
| 175 | + <div class="tool-pill"><span class="dot dot-purple"></span>basedpyright</div> |
| 176 | + <div class="tool-pill"><span class="dot dot-green"></span>pytest</div> |
| 177 | + <div class="tool-pill"><span class="dot dot-pink"></span>pre-commit</div> |
| 178 | + </div> |
| 179 | + <div class="bottom-bar"></div> |
| 180 | + </div> |
| 181 | +</body> |
| 182 | +</html> |
0 commit comments