562 lines
14 KiB
HTML
562 lines
14 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=1440">
|
|
<title>Inkwell — AI Writing Assistant</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap" rel="stylesheet">
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
width: 1440px;
|
|
height: 900px;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
background: #FAFAF8;
|
|
font-family: 'Inter', sans-serif;
|
|
color: #2C2C2C;
|
|
}
|
|
|
|
.page {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 40px 80px 40px 80px;
|
|
}
|
|
|
|
/* NAV */
|
|
.nav-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
color: #2C2C2C;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 40px;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-links a {
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
color: #999;
|
|
text-decoration: none;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: #2C2C2C;
|
|
}
|
|
|
|
/* HERO AREA */
|
|
.hero-section {
|
|
flex: 1;
|
|
display: grid;
|
|
grid-template-columns: 440px 1fr;
|
|
gap: 80px;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 28px;
|
|
}
|
|
|
|
.headline {
|
|
font-size: 52px;
|
|
font-weight: 200;
|
|
line-height: 1.15;
|
|
letter-spacing: -1.5px;
|
|
color: #2C2C2C;
|
|
}
|
|
|
|
.headline em {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
color: #2C2C2C;
|
|
position: relative;
|
|
}
|
|
.headline em::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 4px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 1px;
|
|
background: #D4A574;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 16px;
|
|
font-weight: 300;
|
|
line-height: 1.7;
|
|
color: #999;
|
|
max-width: 380px;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 14px 32px;
|
|
background: #2C2C2C;
|
|
color: #FAFAF8;
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
letter-spacing: 0.5px;
|
|
text-decoration: none;
|
|
border: none;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
width: fit-content;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background: #3C3C3C;
|
|
}
|
|
|
|
.social-proof {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
color: #bbb;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
/* FEATURES — minimal */
|
|
.features-row {
|
|
display: flex;
|
|
gap: 48px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
background: rgba(212, 165, 116, 0.12);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.feature-icon svg {
|
|
color: #D4A574;
|
|
}
|
|
|
|
.feature-label {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: #2C2C2C;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.feature-desc {
|
|
font-size: 12px;
|
|
font-weight: 300;
|
|
color: #aaa;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* EDITOR MOCKUP — floating card */
|
|
.editor-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.editor-card {
|
|
width: 100%;
|
|
max-width: 620px;
|
|
height: 580px;
|
|
background: #FFFFFF;
|
|
border-radius: 2px;
|
|
box-shadow:
|
|
0 4px 6px rgba(0,0,0,0.02),
|
|
0 12px 28px rgba(0,0,0,0.06),
|
|
0 40px 80px rgba(0,0,0,0.04);
|
|
display: grid;
|
|
grid-template-columns: 1fr 190px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.editor-main {
|
|
padding: 32px 28px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.editor-toolbar {
|
|
display: flex;
|
|
gap: 4px;
|
|
margin-bottom: 24px;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px solid #F0EDE8;
|
|
}
|
|
|
|
.tb-btn {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 2px;
|
|
border: none;
|
|
background: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #bbb;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tb-btn.active {
|
|
background: #F5F0E8;
|
|
color: #D4A574;
|
|
}
|
|
|
|
.doc-title {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
letter-spacing: -0.5px;
|
|
color: #2C2C2C;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.doc-paragraph {
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
line-height: 1.9;
|
|
color: #666;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.doc-paragraph .ai-enhanced {
|
|
background: linear-gradient(120deg, rgba(212,165,116,0.1) 0%, rgba(212,165,116,0.18) 100%);
|
|
border-radius: 3px;
|
|
padding: 1px 4px;
|
|
}
|
|
|
|
.doc-h2 {
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
color: #2C2C2C;
|
|
margin-bottom: 12px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.doc-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.doc-list li {
|
|
font-size: 13px;
|
|
font-weight: 300;
|
|
color: #777;
|
|
line-height: 1.8;
|
|
padding-left: 16px;
|
|
position: relative;
|
|
}
|
|
|
|
.doc-list li::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 10px;
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: #D4A574;
|
|
}
|
|
|
|
.cursor-line {
|
|
display: inline-block;
|
|
width: 1.5px;
|
|
height: 15px;
|
|
background: #D4A574;
|
|
animation: pulse 1.2s ease-in-out infinite;
|
|
vertical-align: text-bottom;
|
|
margin-left: 1px;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.2; }
|
|
}
|
|
|
|
/* AI SIDEBAR */
|
|
.ai-sidebar {
|
|
background: #FDFCFA;
|
|
border-left: 1px solid #F0EDE8;
|
|
padding: 24px 18px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.sidebar-title {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
color: #D4A574;
|
|
padding-bottom: 12px;
|
|
border-bottom: 1px solid #F0EDE8;
|
|
}
|
|
|
|
.ai-card {
|
|
background: #fff;
|
|
border-radius: 2px;
|
|
padding: 14px;
|
|
border: 1px solid #F0EDE8;
|
|
}
|
|
|
|
.ai-card-label {
|
|
font-size: 10px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: #bbb;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.ai-card-content {
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
color: #2C2C2C;
|
|
}
|
|
|
|
.voice-score {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.score-track {
|
|
flex: 1;
|
|
height: 3px;
|
|
background: #F0EDE8;
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.score-fill {
|
|
width: 92%;
|
|
height: 100%;
|
|
background: #D4A574;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.score-num {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #D4A574;
|
|
}
|
|
|
|
.platform-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.p-tag {
|
|
font-size: 10px;
|
|
font-weight: 400;
|
|
padding: 4px 10px;
|
|
border-radius: 2px;
|
|
background: #F5F0E8;
|
|
color: #999;
|
|
}
|
|
|
|
.p-tag.active {
|
|
background: rgba(212,165,116,0.15);
|
|
color: #D4A574;
|
|
}
|
|
|
|
.ai-suggestion {
|
|
font-size: 12px;
|
|
font-weight: 300;
|
|
color: #888;
|
|
line-height: 1.6;
|
|
padding: 12px 14px;
|
|
background: #fff;
|
|
border-radius: 2px;
|
|
border: 1px solid #F0EDE8;
|
|
}
|
|
|
|
.ai-suggestion .label {
|
|
font-size: 10px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
color: #bbb;
|
|
display: block;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.refine-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: #2C2C2C;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 2px;
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="page">
|
|
<!-- NAV -->
|
|
<nav class="nav-bar">
|
|
<div class="logo">Inkwell</div>
|
|
<div class="nav-links">
|
|
<a href="#">Features</a>
|
|
<a href="#">Pricing</a>
|
|
<a href="#">Stories</a>
|
|
<a href="#" class="cta-button" style="padding: 10px 24px; font-size: 12px; margin: 0;">Start Writing</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- HERO -->
|
|
<div class="hero-section">
|
|
<!-- LEFT: Text -->
|
|
<div class="hero-text">
|
|
<h1 class="headline">Write better,<br>faster, with<br><em>your own voice</em></h1>
|
|
<p class="subtitle">AI that learns your style, not replaces it. Publish across WeChat, Xiaohongshu, and video scripts while sounding unmistakably you.</p>
|
|
|
|
<div class="features-row">
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<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>
|
|
</div>
|
|
<div>
|
|
<div class="feature-label">Style Learning</div>
|
|
<div class="feature-desc">Adapts to your voice</div>
|
|
</div>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<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>
|
|
</div>
|
|
<div>
|
|
<div class="feature-label">Multi-Platform</div>
|
|
<div class="feature-desc">One tool, every format</div>
|
|
</div>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<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>
|
|
</div>
|
|
<div>
|
|
<div class="feature-label">Human Touch</div>
|
|
<div class="feature-desc">Warmth-preserving edit</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="display: flex; align-items: center; gap: 24px;">
|
|
<a href="#" class="cta-button">
|
|
Start Writing
|
|
<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>
|
|
</a>
|
|
<span class="social-proof">Trusted by 10,000+ creators</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- RIGHT: Editor Card -->
|
|
<div class="editor-wrapper">
|
|
<div class="editor-card">
|
|
<div class="editor-main">
|
|
<div class="editor-toolbar">
|
|
<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>
|
|
<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>
|
|
<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>
|
|
<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>
|
|
</div>
|
|
|
|
<div class="doc-title">Morning Routines for Creative Minds</div>
|
|
<div class="doc-paragraph">
|
|
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>.
|
|
</div>
|
|
<div class="doc-h2">Finding Your Rhythm</div>
|
|
<div class="doc-paragraph">
|
|
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>
|
|
</div>
|
|
<ul class="doc-list">
|
|
<li>Start before checking your phone</li>
|
|
<li>Write the ugly first draft freely</li>
|
|
<li>Let AI handle polish, not direction</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="ai-sidebar">
|
|
<div class="sidebar-title">Inkwell AI</div>
|
|
|
|
<div class="ai-card">
|
|
<div class="ai-card-label">Voice Match</div>
|
|
<div class="ai-card-content">Your Style</div>
|
|
<div class="voice-score">
|
|
<div class="score-track"><div class="score-fill"></div></div>
|
|
<div class="score-num">92%</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ai-card">
|
|
<div class="ai-card-label">Publishing To</div>
|
|
<div class="ai-card-content">WeChat Article</div>
|
|
<div class="platform-tags">
|
|
<span class="p-tag active">WeChat</span>
|
|
<span class="p-tag">XHS</span>
|
|
<span class="p-tag">Script</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ai-suggestion">
|
|
<span class="label">Suggestion</span>
|
|
The second paragraph is beautiful. Consider adding a concrete personal example to ground the abstract idea.
|
|
</div>
|
|
|
|
<button class="refine-btn">
|
|
<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>
|
|
Refine with AI
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |