1
0

homepage-takram.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  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&family=Noto+Serif+SC:wght@300;400;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: #F5F0EB;
  17. font-family: 'Inter', sans-serif;
  18. color: #3D3D3A;
  19. position: relative;
  20. }
  21. /* PAPER TEXTURE */
  22. body::before {
  23. content: '';
  24. position: absolute;
  25. top: 0; left: 0;
  26. width: 100%; height: 100%;
  27. background:
  28. repeating-linear-gradient(
  29. 0deg,
  30. transparent,
  31. transparent 2px,
  32. rgba(0,0,0,0.008) 2px,
  33. rgba(0,0,0,0.008) 4px
  34. ),
  35. repeating-linear-gradient(
  36. 90deg,
  37. transparent,
  38. transparent 2px,
  39. rgba(0,0,0,0.005) 2px,
  40. rgba(0,0,0,0.005) 4px
  41. );
  42. pointer-events: none;
  43. z-index: 1;
  44. }
  45. /* NAV */
  46. nav {
  47. position: absolute;
  48. top: 0; left: 0; right: 0;
  49. height: 72px;
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. padding: 0 80px;
  54. z-index: 10;
  55. }
  56. nav .logo {
  57. font-family: 'Noto Serif SC', serif;
  58. font-weight: 400;
  59. font-size: 16px;
  60. color: #3D3D3A;
  61. letter-spacing: 0.02em;
  62. }
  63. nav ul {
  64. list-style: none;
  65. display: flex;
  66. gap: 36px;
  67. align-items: center;
  68. }
  69. nav ul li a {
  70. font-weight: 400;
  71. font-size: 13px;
  72. color: #8A8A84;
  73. text-decoration: none;
  74. letter-spacing: 0.01em;
  75. transition: color 0.3s;
  76. }
  77. nav ul li a:hover { color: #3D3D3A; }
  78. nav ul li.active a { color: #3D3D3A; }
  79. /* Hairline below nav */
  80. nav::after {
  81. content: '';
  82. position: absolute;
  83. bottom: 0;
  84. left: 50%;
  85. transform: translateX(-50%);
  86. width: 48px;
  87. height: 1px;
  88. background: #C8C2B6;
  89. }
  90. /* MAIN LAYOUT - ASYMMETRIC */
  91. .hero {
  92. position: absolute;
  93. top: 72px;
  94. left: 0;
  95. width: 1440px;
  96. height: 828px;
  97. display: grid;
  98. grid-template-columns: 120px 1fr 400px 120px;
  99. grid-template-rows: 1fr;
  100. align-items: center;
  101. z-index: 2;
  102. }
  103. /* LEFT MARGIN ELEMENT */
  104. .margin-left {
  105. display: flex;
  106. flex-direction: column;
  107. align-items: center;
  108. justify-content: flex-end;
  109. padding-bottom: 80px;
  110. height: 100%;
  111. }
  112. .margin-left .vertical-text {
  113. writing-mode: vertical-rl;
  114. font-size: 10px;
  115. letter-spacing: 0.18em;
  116. color: #B8B2A6;
  117. font-weight: 300;
  118. }
  119. /* CENTER CONTENT */
  120. .hero-center {
  121. padding: 0 40px;
  122. display: flex;
  123. flex-direction: column;
  124. justify-content: center;
  125. }
  126. .hero-center .section-label {
  127. font-size: 10px;
  128. letter-spacing: 0.16em;
  129. text-transform: uppercase;
  130. color: #6B8F71;
  131. font-weight: 500;
  132. margin-bottom: 32px;
  133. opacity: 0.8;
  134. }
  135. .hero-center h1 {
  136. font-family: 'Noto Serif SC', serif;
  137. font-weight: 300;
  138. font-size: 56px;
  139. line-height: 1.25;
  140. letter-spacing: -0.01em;
  141. color: #2D3436;
  142. }
  143. .hero-center h1 .serif-accent {
  144. font-family: 'Noto Serif SC', serif;
  145. font-weight: 600;
  146. font-style: normal;
  147. color: #2D3436;
  148. }
  149. /* HAIRLINE DIVIDER */
  150. .hairline {
  151. width: 48px;
  152. height: 1px;
  153. background: #C8C2B6;
  154. margin: 36px 0;
  155. }
  156. .hero-center .tagline {
  157. font-weight: 300;
  158. font-size: 16px;
  159. line-height: 1.8;
  160. color: #8A8A84;
  161. max-width: 420px;
  162. }
  163. /* STATS - HORIZONTAL */
  164. .stats {
  165. display: flex;
  166. gap: 48px;
  167. margin-top: 48px;
  168. }
  169. .stat {
  170. display: flex;
  171. flex-direction: column;
  172. }
  173. .stat .stat-value {
  174. font-family: 'Noto Serif SC', serif;
  175. font-weight: 600;
  176. font-size: 28px;
  177. color: #2D3436;
  178. letter-spacing: -0.01em;
  179. line-height: 1;
  180. }
  181. .stat .stat-desc {
  182. font-size: 11px;
  183. color: #B8B2A6;
  184. margin-top: 8px;
  185. letter-spacing: 0.04em;
  186. font-weight: 400;
  187. }
  188. /* CTA */
  189. .hero-cta {
  190. margin-top: 48px;
  191. display: flex;
  192. gap: 20px;
  193. align-items: center;
  194. }
  195. .cta-link {
  196. font-weight: 500;
  197. font-size: 13px;
  198. color: #3D3D3A;
  199. text-decoration: none;
  200. display: inline-flex;
  201. align-items: center;
  202. gap: 8px;
  203. padding: 12px 0;
  204. border-bottom: 1px solid #C8C2B6;
  205. transition: all 0.3s;
  206. }
  207. .cta-link:hover { border-color: #6B8F71; color: #6B8F71; }
  208. .cta-link svg { width: 14px; height: 14px; }
  209. .cta-dot {
  210. width: 4px;
  211. height: 4px;
  212. border-radius: 50%;
  213. background: #C8C2B6;
  214. }
  215. .cta-subtle {
  216. font-weight: 300;
  217. font-size: 13px;
  218. color: #B8B2A6;
  219. text-decoration: none;
  220. transition: color 0.3s;
  221. }
  222. .cta-subtle:hover { color: #3D3D3A; }
  223. /* RIGHT PANEL */
  224. .hero-right {
  225. display: flex;
  226. flex-direction: column;
  227. align-items: center;
  228. justify-content: center;
  229. padding: 0 20px;
  230. position: relative;
  231. }
  232. /* PORTRAIT */
  233. .portrait-container {
  234. position: relative;
  235. }
  236. .portrait {
  237. width: 180px;
  238. height: 180px;
  239. border-radius: 50%;
  240. background: #EAE5DD;
  241. overflow: hidden;
  242. position: relative;
  243. border: 1px solid rgba(200, 194, 182, 0.4);
  244. }
  245. .portrait::after {
  246. content: '';
  247. position: absolute;
  248. bottom: 0; left: 50%;
  249. transform: translateX(-50%);
  250. width: 96px;
  251. height: 110px;
  252. background: #D5CEC4;
  253. border-radius: 48px 48px 0 0;
  254. }
  255. .portrait-ring {
  256. position: absolute;
  257. top: -16px; left: -16px;
  258. width: 212px;
  259. height: 212px;
  260. border-radius: 50%;
  261. border: 1px solid rgba(107, 143, 113, 0.2);
  262. }
  263. /* BIO CARD */
  264. .bio-card {
  265. margin-top: 36px;
  266. background: rgba(255,255,255,0.5);
  267. border: 1px solid rgba(0,0,0,0.04);
  268. border-radius: 12px;
  269. padding: 24px 28px;
  270. width: 260px;
  271. backdrop-filter: blur(8px);
  272. }
  273. .bio-card .bio-name {
  274. font-family: 'Noto Serif SC', serif;
  275. font-weight: 600;
  276. font-size: 15px;
  277. color: #3D3D3A;
  278. }
  279. .bio-card .bio-role {
  280. font-size: 12px;
  281. color: #B8B2A6;
  282. margin-top: 4px;
  283. font-weight: 300;
  284. }
  285. .bio-card .bio-hairline {
  286. width: 32px;
  287. height: 1px;
  288. background: #C8C2B6;
  289. margin: 16px 0;
  290. }
  291. .bio-card .bio-desc {
  292. font-size: 12px;
  293. line-height: 1.7;
  294. color: #8A8A84;
  295. font-weight: 300;
  296. }
  297. /* RIGHT MARGIN */
  298. .margin-right {
  299. display: flex;
  300. flex-direction: column;
  301. align-items: center;
  302. justify-content: flex-start;
  303. padding-top: 80px;
  304. height: 100%;
  305. }
  306. .margin-right .year {
  307. writing-mode: vertical-rl;
  308. font-size: 10px;
  309. letter-spacing: 0.18em;
  310. color: #C8C2B6;
  311. font-weight: 300;
  312. }
  313. /* DECORATIVE: FLOATING LEAF/ORGANIC SHAPE */
  314. .organic-shape {
  315. position: absolute;
  316. top: 140px;
  317. right: 280px;
  318. width: 60px;
  319. height: 80px;
  320. z-index: 3;
  321. opacity: 0.08;
  322. }
  323. .organic-shape svg {
  324. width: 100%;
  325. height: 100%;
  326. }
  327. /* BOTTOM AREA */
  328. .bottom-zen {
  329. position: absolute;
  330. bottom: 40px;
  331. left: 50%;
  332. transform: translateX(-50%);
  333. display: flex;
  334. align-items: center;
  335. gap: 24px;
  336. z-index: 5;
  337. }
  338. .bottom-zen .zen-line {
  339. width: 48px;
  340. height: 1px;
  341. background: #C8C2B6;
  342. }
  343. .bottom-zen .zen-text {
  344. font-size: 10px;
  345. letter-spacing: 0.14em;
  346. color: #C8C2B6;
  347. font-weight: 300;
  348. }
  349. </style>
  350. </head>
  351. <body>
  352. <!-- NAV -->
  353. <nav>
  354. <div class="logo">Alex Chen</div>
  355. <ul>
  356. <li class="active"><a href="#work">Work</a></li>
  357. <li><a href="#content">Content</a></li>
  358. <li><a href="#services">Services</a></li>
  359. <li><a href="#contact">Contact</a></li>
  360. </ul>
  361. </nav>
  362. <!-- DECORATIVE: Subtle spec annotation -->
  363. <svg style="position:absolute;top:100px;right:340px;z-index:3;opacity:0.15;" width="60" height="60" viewBox="0 0 60 60" fill="none">
  364. <circle cx="30" cy="30" r="28" stroke="#6B8F71" stroke-width="0.5"/>
  365. <circle cx="30" cy="30" r="18" stroke="#6B8F71" stroke-width="0.5" stroke-dasharray="2,4"/>
  366. <line x1="30" y1="0" x2="30" y2="60" stroke="#6B8F71" stroke-width="0.3"/>
  367. <line x1="0" y1="30" x2="60" y2="30" stroke="#6B8F71" stroke-width="0.3"/>
  368. </svg>
  369. <!-- HERO -->
  370. <div class="hero">
  371. <!-- LEFT MARGIN -->
  372. <div class="margin-left">
  373. <div class="vertical-text">PORTFOLIO</div>
  374. </div>
  375. <!-- CENTER -->
  376. <div class="hero-center">
  377. <div class="section-label">Indie Developer & AI Creator</div>
  378. <h1>Building tools<br>at the intersection<br>of <span class="serif-accent">AI</span> and <span class="serif-accent">creativity</span></h1>
  379. <div class="hairline"></div>
  380. <p class="tagline">I design, build, and write about the things that emerge when technology meets human imagination.</p>
  381. <div class="stats">
  382. <div class="stat">
  383. <div class="stat-value">300K+</div>
  384. <div class="stat-desc">followers</div>
  385. </div>
  386. <div class="stat">
  387. <div class="stat-value">No. 1</div>
  388. <div class="stat-desc">App Store</div>
  389. </div>
  390. <div class="stat">
  391. <div class="stat-value">100+</div>
  392. <div class="stat-desc">articles published</div>
  393. </div>
  394. </div>
  395. <div class="hero-cta">
  396. <a href="#work" class="cta-link">
  397. Explore Work
  398. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>
  399. </a>
  400. <div class="cta-dot"></div>
  401. <a href="#content" class="cta-subtle">Read Writing</a>
  402. </div>
  403. </div>
  404. <!-- RIGHT -->
  405. <div class="hero-right">
  406. <div class="portrait-container">
  407. <div class="portrait"></div>
  408. <div class="portrait-ring"></div>
  409. </div>
  410. <div class="bio-card">
  411. <div class="bio-name">Alex Chen</div>
  412. <div class="bio-role">Developer / Writer / Creator</div>
  413. <div class="bio-hairline"></div>
  414. <div class="bio-desc">Shipping AI-powered products as an independent maker. Writing about the craft of building.</div>
  415. </div>
  416. </div>
  417. <!-- RIGHT MARGIN -->
  418. <div class="margin-right">
  419. <div class="year">2026</div>
  420. </div>
  421. </div>
  422. <!-- BOTTOM ZEN -->
  423. <div class="bottom-zen">
  424. <div class="zen-line"></div>
  425. <div class="zen-text">Design as inquiry</div>
  426. <div class="zen-line"></div>
  427. </div>
  428. </body>
  429. </html>