1
0

homepage-build.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1440">
  6. <title>Alex Chen — Indie Developer & AI Creator</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap" rel="stylesheet">
  8. <script src="https://unpkg.com/lucide@latest"></script>
  9. <style>
  10. * { margin: 0; padding: 0; box-sizing: border-box; }
  11. body {
  12. width: 1440px;
  13. height: 900px;
  14. overflow: hidden;
  15. margin: 0;
  16. background: #FAFAF8;
  17. font-family: 'Inter', sans-serif;
  18. color: #2A2A28;
  19. position: relative;
  20. }
  21. /* GLASSMORPHISM NAV */
  22. nav {
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. width: 1440px;
  27. height: 64px;
  28. display: flex;
  29. align-items: center;
  30. justify-content: space-between;
  31. padding: 0 80px;
  32. background: rgba(250, 250, 248, 0.72);
  33. backdrop-filter: blur(24px);
  34. -webkit-backdrop-filter: blur(24px);
  35. border-bottom: 1px solid rgba(0,0,0,0.04);
  36. z-index: 100;
  37. }
  38. nav .logo {
  39. font-weight: 500;
  40. font-size: 15px;
  41. letter-spacing: 0.02em;
  42. color: #2A2A28;
  43. }
  44. nav .logo .dot { color: #D4A574; }
  45. nav ul {
  46. list-style: none;
  47. display: flex;
  48. gap: 40px;
  49. }
  50. nav ul li a {
  51. font-weight: 400;
  52. font-size: 13px;
  53. color: #888;
  54. text-decoration: none;
  55. letter-spacing: 0.01em;
  56. transition: color 0.3s;
  57. }
  58. nav ul li a:hover { color: #2A2A28; }
  59. nav .nav-cta a {
  60. font-weight: 400;
  61. font-size: 12px;
  62. color: #2A2A28;
  63. text-decoration: none;
  64. padding: 8px 24px;
  65. border: 1px solid rgba(0,0,0,0.08);
  66. border-radius: 2px;
  67. transition: all 0.3s;
  68. letter-spacing: 0.02em;
  69. }
  70. nav .nav-cta a:hover {
  71. border-color: #D4A574;
  72. color: #D4A574;
  73. }
  74. /* HERO LAYOUT */
  75. .hero {
  76. position: absolute;
  77. top: 0;
  78. left: 0;
  79. width: 1440px;
  80. height: 900px;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. padding: 0 80px;
  85. }
  86. .hero-content {
  87. display: flex;
  88. align-items: center;
  89. gap: 96px;
  90. width: 100%;
  91. max-width: 1200px;
  92. }
  93. /* LEFT: TEXT */
  94. .hero-text {
  95. flex: 1;
  96. }
  97. .hero-text .greeting {
  98. font-weight: 400;
  99. font-size: 11px;
  100. color: #B0ACA4;
  101. letter-spacing: 4px;
  102. text-transform: uppercase;
  103. margin-bottom: 24px;
  104. }
  105. .hero-text h1 {
  106. font-weight: 200;
  107. font-size: 80px;
  108. line-height: 1.02;
  109. letter-spacing: -0.04em;
  110. color: #2A2A28;
  111. }
  112. .hero-text h1 strong {
  113. font-weight: 500;
  114. }
  115. .hero-text h1 .gold-period {
  116. color: #D4A574;
  117. font-weight: 300;
  118. }
  119. .hero-text .tagline {
  120. font-weight: 300;
  121. font-size: 16px;
  122. line-height: 1.8;
  123. color: #999;
  124. margin-top: 32px;
  125. max-width: 440px;
  126. }
  127. /* CTA BUTTONS */
  128. .hero-cta {
  129. display: flex;
  130. gap: 16px;
  131. margin-top: 48px;
  132. }
  133. .btn-primary {
  134. display: inline-flex;
  135. align-items: center;
  136. gap: 8px;
  137. font-family: 'Inter', sans-serif;
  138. font-weight: 400;
  139. font-size: 13px;
  140. color: #FAFAF8;
  141. background: #2A2A28;
  142. border: none;
  143. padding: 14px 32px;
  144. border-radius: 2px;
  145. cursor: pointer;
  146. transition: all 0.3s;
  147. text-decoration: none;
  148. letter-spacing: 0.02em;
  149. }
  150. .btn-primary:hover { background: #3A3A38; }
  151. .btn-secondary {
  152. display: inline-flex;
  153. align-items: center;
  154. gap: 8px;
  155. font-family: 'Inter', sans-serif;
  156. font-weight: 400;
  157. font-size: 13px;
  158. color: #888;
  159. background: transparent;
  160. border: 1px solid rgba(0,0,0,0.08);
  161. padding: 14px 32px;
  162. border-radius: 2px;
  163. cursor: pointer;
  164. transition: all 0.3s;
  165. text-decoration: none;
  166. letter-spacing: 0.02em;
  167. }
  168. .btn-secondary:hover { border-color: #D4A574; color: #D4A574; }
  169. /* RIGHT: CARDS + PORTRAIT */
  170. .hero-visual {
  171. flex: 0 0 460px;
  172. position: relative;
  173. height: 520px;
  174. }
  175. /* PORTRAIT */
  176. .portrait {
  177. width: 200px;
  178. height: 200px;
  179. border-radius: 50%;
  180. background: #EDECE8;
  181. position: absolute;
  182. top: 0;
  183. right: 40px;
  184. box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  185. overflow: hidden;
  186. }
  187. .portrait::after {
  188. content: '';
  189. position: absolute;
  190. bottom: 0; left: 50%;
  191. transform: translateX(-50%);
  192. width: 110px;
  193. height: 130px;
  194. background: #D8D6D0;
  195. border-radius: 55px 55px 0 0;
  196. }
  197. /* FLOATING CARDS */
  198. .card {
  199. position: absolute;
  200. background: #FFFFFF;
  201. border: 1px solid rgba(0,0,0,0.04);
  202. border-radius: 2px;
  203. padding: 24px;
  204. box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  205. }
  206. .card-1 {
  207. top: 60px;
  208. left: 0;
  209. width: 220px;
  210. }
  211. .card-2 {
  212. top: 240px;
  213. left: 60px;
  214. width: 240px;
  215. }
  216. .card-3 {
  217. top: 180px;
  218. right: 0;
  219. width: 200px;
  220. }
  221. .card .card-number {
  222. font-weight: 200;
  223. font-size: 32px;
  224. letter-spacing: -0.02em;
  225. color: #2A2A28;
  226. line-height: 1;
  227. }
  228. .card .card-number .gold { color: #D4A574; font-weight: 300; }
  229. .card .card-label {
  230. font-weight: 400;
  231. font-size: 10px;
  232. color: #B0ACA4;
  233. margin-top: 8px;
  234. letter-spacing: 2px;
  235. text-transform: uppercase;
  236. }
  237. .card .card-desc {
  238. font-weight: 300;
  239. font-size: 12px;
  240. color: #999;
  241. margin-top: 8px;
  242. line-height: 1.5;
  243. }
  244. /* GOLD ACCENT LINE */
  245. .accent-line {
  246. position: absolute;
  247. bottom: 0;
  248. left: 100px;
  249. width: 48px;
  250. height: 2px;
  251. background: #D4A574;
  252. border-radius: 1px;
  253. }
  254. /* Removed dot-grid — Build: zero decorative elements */
  255. /* BOTTOM TICKER */
  256. .bottom-bar {
  257. position: absolute;
  258. bottom: 0;
  259. left: 0;
  260. width: 1440px;
  261. height: 48px;
  262. display: flex;
  263. align-items: center;
  264. justify-content: center;
  265. gap: 48px;
  266. border-top: 1px solid rgba(0,0,0,0.04);
  267. }
  268. .bottom-bar span {
  269. font-weight: 300;
  270. font-size: 11px;
  271. color: #BBB;
  272. letter-spacing: 0.08em;
  273. }
  274. .bottom-bar .sep {
  275. width: 4px;
  276. height: 4px;
  277. border-radius: 50%;
  278. background: #D4A574;
  279. opacity: 0.5;
  280. }
  281. </style>
  282. </head>
  283. <body>
  284. <!-- NAV -->
  285. <nav>
  286. <div class="logo">alex chen<span class="dot"> .</span></div>
  287. <ul>
  288. <li><a href="#work">Work</a></li>
  289. <li><a href="#content">Content</a></li>
  290. <li><a href="#services">Services</a></li>
  291. </ul>
  292. <div class="nav-cta">
  293. <a href="#contact">Get in Touch</a>
  294. </div>
  295. </nav>
  296. <!-- HERO -->
  297. <div class="hero">
  298. <div class="hero-content">
  299. <!-- TEXT -->
  300. <div class="hero-text">
  301. <div class="greeting">Indie Developer & AI Creator</div>
  302. <h1>Alex<br><strong>Chen</strong><span class="gold-period">.</span></h1>
  303. <p class="tagline">Building tools at the intersection of AI and creativity. Shipping products, writing stories, shaping ideas.</p>
  304. <div class="hero-cta">
  305. <a href="#work" class="btn-primary">
  306. View Work
  307. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>
  308. </a>
  309. <a href="#content" class="btn-secondary">Read Articles</a>
  310. </div>
  311. </div>
  312. <!-- VISUAL -->
  313. <div class="hero-visual">
  314. <div class="portrait"></div>
  315. <div class="card card-1">
  316. <div class="card-number">300K<span class="gold">+</span></div>
  317. <div class="card-label">Followers</div>
  318. <div class="card-desc">Across platforms, building in public</div>
  319. </div>
  320. <div class="card card-2">
  321. <div class="card-number"><span class="gold">#</span>1</div>
  322. <div class="card-label">App Store</div>
  323. <div class="card-desc">Top paid app, shipped as a solo developer</div>
  324. </div>
  325. <div class="card card-3">
  326. <div class="card-number">100<span class="gold">+</span></div>
  327. <div class="card-label">Articles</div>
  328. <div class="card-desc">On AI, dev, and creative tools</div>
  329. </div>
  330. <div class="accent-line"></div>
  331. </div>
  332. </div>
  333. </div>
  334. <!-- BOTTOM BAR -->
  335. <div class="bottom-bar">
  336. <span>Developer</span>
  337. <div class="sep"></div>
  338. <span>Writer</span>
  339. <div class="sep"></div>
  340. <span>AI Creator</span>
  341. <div class="sep"></div>
  342. <span>Speaker</span>
  343. </div>
  344. </body>
  345. </html>