homepage-pentagram.html 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&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: #FFFFFF;
  17. font-family: 'Helvetica Neue', Arial, sans-serif;
  18. color: #111111;
  19. position: relative;
  20. }
  21. /* NAV */
  22. nav {
  23. position: absolute;
  24. top: 0; left: 0; right: 0;
  25. height: 72px;
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. padding: 0 80px;
  30. border-bottom: 1px solid #111;
  31. z-index: 10;
  32. }
  33. nav .logo {
  34. font-family: 'Helvetica Neue', Arial, sans-serif;
  35. font-weight: 700;
  36. font-size: 16px;
  37. letter-spacing: 0.08em;
  38. text-transform: uppercase;
  39. }
  40. nav .logo span { color: #E63946; }
  41. nav ul {
  42. list-style: none;
  43. display: flex;
  44. gap: 48px;
  45. }
  46. nav ul li a {
  47. font-family: 'Helvetica Neue', Arial, sans-serif;
  48. font-weight: 500;
  49. font-size: 11px;
  50. letter-spacing: 0.18em;
  51. text-transform: uppercase;
  52. text-decoration: none;
  53. color: #111;
  54. transition: color 0.2s;
  55. }
  56. nav ul li a:hover { color: #E63946; }
  57. nav .nav-contact a {
  58. background: #111;
  59. color: #fff;
  60. padding: 10px 28px;
  61. font-family: 'Helvetica Neue', Arial, sans-serif;
  62. font-weight: 500;
  63. font-size: 11px;
  64. letter-spacing: 0.14em;
  65. text-transform: uppercase;
  66. text-decoration: none;
  67. transition: background 0.2s;
  68. }
  69. nav .nav-contact a:hover { background: #E63946; }
  70. /* MAIN GRID */
  71. .hero {
  72. position: absolute;
  73. top: 72px;
  74. left: 0;
  75. right: 0;
  76. bottom: 0;
  77. display: grid;
  78. grid-template-columns: 1fr 1px 1fr;
  79. grid-template-rows: 1fr;
  80. }
  81. /* LEFT PANEL */
  82. .hero-left {
  83. padding: 64px 80px;
  84. display: flex;
  85. flex-direction: column;
  86. justify-content: space-between;
  87. }
  88. .hero-left .intro-label {
  89. font-family: 'Helvetica Neue', Arial, sans-serif;
  90. font-size: 11px;
  91. letter-spacing: 0.2em;
  92. text-transform: uppercase;
  93. color: #999;
  94. margin-bottom: 16px;
  95. }
  96. .hero-left .name {
  97. font-family: 'Helvetica Neue', Arial, sans-serif;
  98. font-weight: 900;
  99. font-size: 112px;
  100. line-height: 0.92;
  101. letter-spacing: -0.03em;
  102. color: #111;
  103. }
  104. .hero-left .name .accent { color: #E63946; }
  105. .hero-left .tagline {
  106. font-family: 'Helvetica Neue', Arial, sans-serif;
  107. font-weight: 300;
  108. font-size: 20px;
  109. line-height: 1.6;
  110. color: #555;
  111. max-width: 480px;
  112. margin-top: 32px;
  113. }
  114. /* STATS ROW */
  115. .stats-row {
  116. display: flex;
  117. gap: 0;
  118. border-top: 1px solid #111;
  119. padding-top: 32px;
  120. }
  121. .stat-item {
  122. flex: 1;
  123. position: relative;
  124. }
  125. .stat-item:not(:last-child)::after {
  126. content: '';
  127. position: absolute;
  128. right: 0;
  129. top: 0;
  130. height: 100%;
  131. width: 1px;
  132. background: #DDD;
  133. }
  134. .stat-item .stat-number {
  135. font-family: 'Helvetica Neue', Arial, sans-serif;
  136. font-weight: 700;
  137. font-size: 48px;
  138. letter-spacing: -0.02em;
  139. color: #111;
  140. line-height: 1;
  141. }
  142. .stat-item .stat-number .red { color: #E63946; }
  143. .stat-item .stat-label {
  144. font-family: 'Helvetica Neue', Arial, sans-serif;
  145. font-size: 11px;
  146. letter-spacing: 0.14em;
  147. text-transform: uppercase;
  148. color: #999;
  149. margin-top: 8px;
  150. }
  151. /* CENTER DIVIDER */
  152. .divider {
  153. background: #111;
  154. }
  155. /* RIGHT PANEL */
  156. .hero-right {
  157. padding: 64px 80px;
  158. display: flex;
  159. flex-direction: column;
  160. justify-content: center;
  161. align-items: center;
  162. position: relative;
  163. background: #FAFAFA;
  164. }
  165. /* PORTRAIT PLACEHOLDER */
  166. .portrait-wrap {
  167. position: relative;
  168. width: 320px;
  169. height: 320px;
  170. }
  171. .portrait-circle {
  172. width: 320px;
  173. height: 320px;
  174. border-radius: 50%;
  175. background: #E8E8E8;
  176. position: relative;
  177. overflow: hidden;
  178. }
  179. .portrait-circle::after {
  180. content: '';
  181. position: absolute;
  182. bottom: 0; left: 50%;
  183. transform: translateX(-50%);
  184. width: 180px;
  185. height: 200px;
  186. background: #D0D0D0;
  187. border-radius: 90px 90px 0 0;
  188. }
  189. .portrait-frame {
  190. position: absolute;
  191. top: -12px;
  192. left: -12px;
  193. width: 344px;
  194. height: 344px;
  195. border: 1px solid #E63946;
  196. border-radius: 50%;
  197. }
  198. /* RED INDEX MARKER */
  199. .index-marker {
  200. position: absolute;
  201. bottom: 64px;
  202. right: 80px;
  203. text-align: right;
  204. }
  205. .index-marker .idx-num {
  206. font-family: 'Helvetica Neue', Arial, sans-serif;
  207. font-weight: 700;
  208. font-size: 120px;
  209. line-height: 0.85;
  210. color: #E63946;
  211. opacity: 0.1;
  212. }
  213. .index-marker .idx-label {
  214. font-family: 'Helvetica Neue', Arial, sans-serif;
  215. font-size: 11px;
  216. letter-spacing: 0.18em;
  217. text-transform: uppercase;
  218. color: #999;
  219. margin-top: 8px;
  220. }
  221. /* DECORATIVE ELEMENTS */
  222. .corner-mark {
  223. position: absolute;
  224. top: 64px;
  225. right: 80px;
  226. font-family: 'Helvetica Neue', Arial, sans-serif;
  227. font-size: 11px;
  228. letter-spacing: 0.18em;
  229. text-transform: uppercase;
  230. color: #CCC;
  231. }
  232. .hero-right .role-tags {
  233. margin-top: 40px;
  234. display: flex;
  235. gap: 12px;
  236. }
  237. .role-tags span {
  238. font-family: 'Helvetica Neue', Arial, sans-serif;
  239. font-size: 11px;
  240. letter-spacing: 0.12em;
  241. text-transform: uppercase;
  242. padding: 8px 20px;
  243. border: 1px solid #CCC;
  244. color: #666;
  245. transition: all 0.2s;
  246. }
  247. .role-tags span:hover {
  248. border-color: #E63946;
  249. color: #E63946;
  250. }
  251. /* SCROLL CTA */
  252. .scroll-cta {
  253. position: absolute;
  254. bottom: 28px;
  255. left: 50%;
  256. transform: translateX(-50%);
  257. display: flex;
  258. flex-direction: column;
  259. align-items: center;
  260. gap: 8px;
  261. }
  262. .scroll-cta span {
  263. font-family: 'Helvetica Neue', Arial, sans-serif;
  264. font-size: 10px;
  265. letter-spacing: 0.2em;
  266. text-transform: uppercase;
  267. color: #BBB;
  268. }
  269. .scroll-cta .arrow-down {
  270. width: 1px;
  271. height: 32px;
  272. background: #CCC;
  273. position: relative;
  274. }
  275. .scroll-cta .arrow-down::after {
  276. content: '';
  277. position: absolute;
  278. bottom: 0;
  279. left: -3px;
  280. width: 7px;
  281. height: 7px;
  282. border-right: 1px solid #CCC;
  283. border-bottom: 1px solid #CCC;
  284. transform: rotate(45deg);
  285. }
  286. </style>
  287. </head>
  288. <body>
  289. <!-- NAVIGATION -->
  290. <nav>
  291. <div class="logo">Alex<span>.</span>Chen</div>
  292. <ul>
  293. <li><a href="#work">Work</a></li>
  294. <li><a href="#content">Content</a></li>
  295. <li><a href="#services">Services</a></li>
  296. </ul>
  297. <div class="nav-contact">
  298. <a href="#contact">Contact</a>
  299. </div>
  300. </nav>
  301. <!-- HERO -->
  302. <div class="hero">
  303. <!-- LEFT -->
  304. <div class="hero-left">
  305. <div>
  306. <div class="intro-label">Indie Developer / AI Creator</div>
  307. <h1 class="name">Alex<br>Chen<span class="accent">.</span></h1>
  308. <p class="tagline">Building tools at the intersection of AI and creativity.</p>
  309. </div>
  310. <div class="stats-row">
  311. <div class="stat-item">
  312. <div class="stat-number">300K<span class="red">+</span></div>
  313. <div class="stat-label">Followers</div>
  314. </div>
  315. <div class="stat-item" style="padding-left: 32px;">
  316. <div class="stat-number">#1</div>
  317. <div class="stat-label">App Store</div>
  318. </div>
  319. <div class="stat-item" style="padding-left: 32px;">
  320. <div class="stat-number">100<span class="red">+</span></div>
  321. <div class="stat-label">Articles</div>
  322. </div>
  323. </div>
  324. </div>
  325. <!-- DIVIDER -->
  326. <div class="divider"></div>
  327. <!-- RIGHT -->
  328. <div class="hero-right">
  329. <div class="corner-mark">Portfolio 2026</div>
  330. <div class="portrait-wrap">
  331. <div class="portrait-circle"></div>
  332. <div class="portrait-frame"></div>
  333. </div>
  334. <div class="role-tags">
  335. <span>Developer</span>
  336. <span>Writer</span>
  337. <span>Creator</span>
  338. </div>
  339. <div class="index-marker">
  340. <div class="idx-num">01</div>
  341. <div class="idx-label">Hero</div>
  342. </div>
  343. </div>
  344. </div>
  345. <!-- SCROLL CTA -->
  346. <div class="scroll-cta">
  347. <span>Scroll</span>
  348. <div class="arrow-down"></div>
  349. </div>
  350. </body>
  351. </html>