aiwriting-build.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1440">
  6. <title>Inkwell — AI Writing Assistant</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: #2C2C2C;
  19. }
  20. .page {
  21. width: 100%;
  22. height: 100%;
  23. display: flex;
  24. flex-direction: column;
  25. padding: 40px 80px 40px 80px;
  26. }
  27. /* NAV */
  28. .nav-bar {
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. margin-bottom: 60px;
  33. }
  34. .logo {
  35. font-size: 18px;
  36. font-weight: 500;
  37. letter-spacing: 3px;
  38. text-transform: uppercase;
  39. color: #2C2C2C;
  40. }
  41. .nav-links {
  42. display: flex;
  43. gap: 40px;
  44. align-items: center;
  45. }
  46. .nav-links a {
  47. font-size: 13px;
  48. font-weight: 400;
  49. color: #999;
  50. text-decoration: none;
  51. letter-spacing: 0.5px;
  52. }
  53. .nav-links a:hover {
  54. color: #2C2C2C;
  55. }
  56. /* HERO AREA */
  57. .hero-section {
  58. flex: 1;
  59. display: grid;
  60. grid-template-columns: 440px 1fr;
  61. gap: 80px;
  62. align-items: center;
  63. }
  64. .hero-text {
  65. display: flex;
  66. flex-direction: column;
  67. gap: 28px;
  68. }
  69. .headline {
  70. font-size: 52px;
  71. font-weight: 200;
  72. line-height: 1.15;
  73. letter-spacing: -1.5px;
  74. color: #2C2C2C;
  75. }
  76. .headline em {
  77. font-style: normal;
  78. font-weight: 400;
  79. color: #2C2C2C;
  80. position: relative;
  81. }
  82. .headline em::after {
  83. content: '';
  84. position: absolute;
  85. bottom: 4px;
  86. left: 0;
  87. width: 100%;
  88. height: 1px;
  89. background: #D4A574;
  90. opacity: 0.5;
  91. }
  92. .subtitle {
  93. font-size: 16px;
  94. font-weight: 300;
  95. line-height: 1.7;
  96. color: #999;
  97. max-width: 380px;
  98. }
  99. .cta-button {
  100. display: inline-flex;
  101. align-items: center;
  102. gap: 8px;
  103. padding: 14px 32px;
  104. background: #2C2C2C;
  105. color: #FAFAF8;
  106. font-family: 'Inter', sans-serif;
  107. font-size: 13px;
  108. font-weight: 400;
  109. letter-spacing: 0.5px;
  110. text-decoration: none;
  111. border: none;
  112. border-radius: 2px;
  113. cursor: pointer;
  114. width: fit-content;
  115. transition: background 0.3s;
  116. }
  117. .cta-button:hover {
  118. background: #3C3C3C;
  119. }
  120. .social-proof {
  121. font-size: 12px;
  122. font-weight: 400;
  123. color: #bbb;
  124. letter-spacing: 0.5px;
  125. }
  126. /* FEATURES — minimal */
  127. .features-row {
  128. display: flex;
  129. gap: 48px;
  130. margin-top: 8px;
  131. }
  132. .feature-item {
  133. display: flex;
  134. align-items: flex-start;
  135. gap: 12px;
  136. }
  137. .feature-icon {
  138. width: 36px;
  139. height: 36px;
  140. border-radius: 50%;
  141. background: rgba(212, 165, 116, 0.12);
  142. display: flex;
  143. align-items: center;
  144. justify-content: center;
  145. flex-shrink: 0;
  146. margin-top: 1px;
  147. }
  148. .feature-icon svg {
  149. color: #D4A574;
  150. }
  151. .feature-label {
  152. font-size: 13px;
  153. font-weight: 500;
  154. color: #2C2C2C;
  155. margin-bottom: 2px;
  156. }
  157. .feature-desc {
  158. font-size: 12px;
  159. font-weight: 300;
  160. color: #aaa;
  161. line-height: 1.5;
  162. }
  163. /* EDITOR MOCKUP — floating card */
  164. .editor-wrapper {
  165. display: flex;
  166. justify-content: center;
  167. align-items: center;
  168. height: 100%;
  169. }
  170. .editor-card {
  171. width: 100%;
  172. max-width: 620px;
  173. height: 580px;
  174. background: #FFFFFF;
  175. border-radius: 2px;
  176. box-shadow:
  177. 0 4px 6px rgba(0,0,0,0.02),
  178. 0 12px 28px rgba(0,0,0,0.06),
  179. 0 40px 80px rgba(0,0,0,0.04);
  180. display: grid;
  181. grid-template-columns: 1fr 190px;
  182. overflow: hidden;
  183. }
  184. .editor-main {
  185. padding: 32px 28px;
  186. display: flex;
  187. flex-direction: column;
  188. }
  189. .editor-toolbar {
  190. display: flex;
  191. gap: 4px;
  192. margin-bottom: 24px;
  193. padding-bottom: 16px;
  194. border-bottom: 1px solid #F0EDE8;
  195. }
  196. .tb-btn {
  197. width: 32px;
  198. height: 32px;
  199. border-radius: 2px;
  200. border: none;
  201. background: transparent;
  202. display: flex;
  203. align-items: center;
  204. justify-content: center;
  205. color: #bbb;
  206. cursor: pointer;
  207. }
  208. .tb-btn.active {
  209. background: #F5F0E8;
  210. color: #D4A574;
  211. }
  212. .doc-title {
  213. font-size: 24px;
  214. font-weight: 500;
  215. letter-spacing: -0.5px;
  216. color: #2C2C2C;
  217. margin-bottom: 18px;
  218. }
  219. .doc-paragraph {
  220. font-size: 14px;
  221. font-weight: 300;
  222. line-height: 1.9;
  223. color: #666;
  224. margin-bottom: 16px;
  225. }
  226. .doc-paragraph .ai-enhanced {
  227. background: linear-gradient(120deg, rgba(212,165,116,0.1) 0%, rgba(212,165,116,0.18) 100%);
  228. border-radius: 3px;
  229. padding: 1px 4px;
  230. }
  231. .doc-h2 {
  232. font-size: 17px;
  233. font-weight: 500;
  234. color: #2C2C2C;
  235. margin-bottom: 12px;
  236. margin-top: 4px;
  237. }
  238. .doc-list {
  239. list-style: none;
  240. padding: 0;
  241. }
  242. .doc-list li {
  243. font-size: 13px;
  244. font-weight: 300;
  245. color: #777;
  246. line-height: 1.8;
  247. padding-left: 16px;
  248. position: relative;
  249. }
  250. .doc-list li::before {
  251. content: '';
  252. position: absolute;
  253. left: 0;
  254. top: 10px;
  255. width: 5px;
  256. height: 5px;
  257. border-radius: 50%;
  258. background: #D4A574;
  259. }
  260. .cursor-line {
  261. display: inline-block;
  262. width: 1.5px;
  263. height: 15px;
  264. background: #D4A574;
  265. animation: pulse 1.2s ease-in-out infinite;
  266. vertical-align: text-bottom;
  267. margin-left: 1px;
  268. }
  269. @keyframes pulse {
  270. 0%, 100% { opacity: 1; }
  271. 50% { opacity: 0.2; }
  272. }
  273. /* AI SIDEBAR */
  274. .ai-sidebar {
  275. background: #FDFCFA;
  276. border-left: 1px solid #F0EDE8;
  277. padding: 24px 18px;
  278. display: flex;
  279. flex-direction: column;
  280. gap: 16px;
  281. }
  282. .sidebar-title {
  283. font-size: 11px;
  284. font-weight: 500;
  285. letter-spacing: 2px;
  286. text-transform: uppercase;
  287. color: #D4A574;
  288. padding-bottom: 12px;
  289. border-bottom: 1px solid #F0EDE8;
  290. }
  291. .ai-card {
  292. background: #fff;
  293. border-radius: 2px;
  294. padding: 14px;
  295. border: 1px solid #F0EDE8;
  296. }
  297. .ai-card-label {
  298. font-size: 10px;
  299. font-weight: 500;
  300. text-transform: uppercase;
  301. letter-spacing: 1px;
  302. color: #bbb;
  303. margin-bottom: 6px;
  304. }
  305. .ai-card-content {
  306. font-size: 13px;
  307. font-weight: 400;
  308. color: #2C2C2C;
  309. }
  310. .voice-score {
  311. display: flex;
  312. align-items: center;
  313. gap: 8px;
  314. margin-top: 8px;
  315. }
  316. .score-track {
  317. flex: 1;
  318. height: 3px;
  319. background: #F0EDE8;
  320. border-radius: 2px;
  321. overflow: hidden;
  322. }
  323. .score-fill {
  324. width: 92%;
  325. height: 100%;
  326. background: #D4A574;
  327. border-radius: 2px;
  328. }
  329. .score-num {
  330. font-size: 12px;
  331. font-weight: 500;
  332. color: #D4A574;
  333. }
  334. .platform-tags {
  335. display: flex;
  336. flex-wrap: wrap;
  337. gap: 6px;
  338. margin-top: 8px;
  339. }
  340. .p-tag {
  341. font-size: 10px;
  342. font-weight: 400;
  343. padding: 4px 10px;
  344. border-radius: 2px;
  345. background: #F5F0E8;
  346. color: #999;
  347. }
  348. .p-tag.active {
  349. background: rgba(212,165,116,0.15);
  350. color: #D4A574;
  351. }
  352. .ai-suggestion {
  353. font-size: 12px;
  354. font-weight: 300;
  355. color: #888;
  356. line-height: 1.6;
  357. padding: 12px 14px;
  358. background: #fff;
  359. border-radius: 2px;
  360. border: 1px solid #F0EDE8;
  361. }
  362. .ai-suggestion .label {
  363. font-size: 10px;
  364. font-weight: 500;
  365. text-transform: uppercase;
  366. letter-spacing: 0.8px;
  367. color: #bbb;
  368. display: block;
  369. margin-bottom: 6px;
  370. }
  371. .refine-btn {
  372. display: flex;
  373. align-items: center;
  374. justify-content: center;
  375. gap: 8px;
  376. width: 100%;
  377. padding: 12px;
  378. background: #2C2C2C;
  379. color: #fff;
  380. border: none;
  381. border-radius: 2px;
  382. font-family: 'Inter', sans-serif;
  383. font-size: 12px;
  384. font-weight: 500;
  385. cursor: pointer;
  386. letter-spacing: 0.5px;
  387. }
  388. </style>
  389. </head>
  390. <body>
  391. <div class="page">
  392. <!-- NAV -->
  393. <nav class="nav-bar">
  394. <div class="logo">Inkwell</div>
  395. <div class="nav-links">
  396. <a href="#">Features</a>
  397. <a href="#">Pricing</a>
  398. <a href="#">Stories</a>
  399. <a href="#" class="cta-button" style="padding: 10px 24px; font-size: 12px; margin: 0;">Start Writing</a>
  400. </div>
  401. </nav>
  402. <!-- HERO -->
  403. <div class="hero-section">
  404. <!-- LEFT: Text -->
  405. <div class="hero-text">
  406. <h1 class="headline">Write better,<br>faster, with<br><em>your own voice</em></h1>
  407. <p class="subtitle">AI that learns your style, not replaces it. Publish across WeChat, Xiaohongshu, and video scripts while sounding unmistakably you.</p>
  408. <div class="features-row">
  409. <div class="feature-item">
  410. <div class="feature-icon">
  411. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M12 20h9"/><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"/></svg>
  412. </div>
  413. <div>
  414. <div class="feature-label">Style Learning</div>
  415. <div class="feature-desc">Adapts to your voice</div>
  416. </div>
  417. </div>
  418. <div class="feature-item">
  419. <div class="feature-icon">
  420. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="2" y="3" width="20" height="14" rx="2" ry="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
  421. </div>
  422. <div>
  423. <div class="feature-label">Multi-Platform</div>
  424. <div class="feature-desc">One tool, every format</div>
  425. </div>
  426. </div>
  427. <div class="feature-item">
  428. <div class="feature-icon">
  429. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>
  430. </div>
  431. <div>
  432. <div class="feature-label">Human Touch</div>
  433. <div class="feature-desc">Warmth-preserving edit</div>
  434. </div>
  435. </div>
  436. </div>
  437. <div style="display: flex; align-items: center; gap: 24px;">
  438. <a href="#" class="cta-button">
  439. Start Writing
  440. <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
  441. </a>
  442. <span class="social-proof">Trusted by 10,000+ creators</span>
  443. </div>
  444. </div>
  445. <!-- RIGHT: Editor Card -->
  446. <div class="editor-wrapper">
  447. <div class="editor-card">
  448. <div class="editor-main">
  449. <div class="editor-toolbar">
  450. <button class="tb-btn active"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"/><path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"/></svg></button>
  451. <button class="tb-btn"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="19" y1="4" x2="10" y2="4"/><line x1="14" y1="20" x2="5" y2="20"/><line x1="15" y1="4" x2="9" y2="20"/></svg></button>
  452. <button class="tb-btn"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="21" y1="6" x2="3" y2="6"/><line x1="15" y1="12" x2="3" y2="12"/><line x1="17" y1="18" x2="3" y2="18"/></svg></button>
  453. <button class="tb-btn"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/></svg></button>
  454. </div>
  455. <div class="doc-title">Morning Routines for Creative Minds</div>
  456. <div class="doc-paragraph">
  457. The best ideas rarely arrive on schedule. They come in the quiet space between waking and doing — <span class="ai-enhanced">that liminal moment when the mind is loose enough to wander but awake enough to notice</span>.
  458. </div>
  459. <div class="doc-h2">Finding Your Rhythm</div>
  460. <div class="doc-paragraph">
  461. Productivity culture tells us to optimize every hour. But creation is not production. The most prolific writers I know guard their mornings like sacred ground.<span class="cursor-line"></span>
  462. </div>
  463. <ul class="doc-list">
  464. <li>Start before checking your phone</li>
  465. <li>Write the ugly first draft freely</li>
  466. <li>Let AI handle polish, not direction</li>
  467. </ul>
  468. </div>
  469. <div class="ai-sidebar">
  470. <div class="sidebar-title">Inkwell AI</div>
  471. <div class="ai-card">
  472. <div class="ai-card-label">Voice Match</div>
  473. <div class="ai-card-content">Your Style</div>
  474. <div class="voice-score">
  475. <div class="score-track"><div class="score-fill"></div></div>
  476. <div class="score-num">92%</div>
  477. </div>
  478. </div>
  479. <div class="ai-card">
  480. <div class="ai-card-label">Publishing To</div>
  481. <div class="ai-card-content">WeChat Article</div>
  482. <div class="platform-tags">
  483. <span class="p-tag active">WeChat</span>
  484. <span class="p-tag">XHS</span>
  485. <span class="p-tag">Script</span>
  486. </div>
  487. </div>
  488. <div class="ai-suggestion">
  489. <span class="label">Suggestion</span>
  490. The second paragraph is beautiful. Consider adding a concrete personal example to ground the abstract idea.
  491. </div>
  492. <button class="refine-btn">
  493. <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 3v18"/><path d="M3 12h18"/></svg>
  494. Refine with AI
  495. </button>
  496. </div>
  497. </div>
  498. </div>
  499. </div>
  500. </div>
  501. </body>
  502. </html>