-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
279 lines (274 loc) · 9.84 KB
/
index.html
File metadata and controls
279 lines (274 loc) · 9.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyNoteLM · 桌面版 NotebookLM 替代</title>
<meta name="description" content="MyNoteLM 是一个开源的、桌面版本的 Google NotebookLM 替代,帮助你构建私有化的多文档知识工作站。">
<style>
:root {
color-scheme: light dark;
font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
--bg: #f8fafc;
--card: #ffffffcc;
--text: #111827;
--muted: #6b7280;
--brand: #2563eb;
--brand-dark: #1d4ed8;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: radial-gradient(circle at top right, #dbeafe, #eff6ff 55%, var(--bg));
color: var(--text);
min-height: 100vh;
}
.container {
max-width: 1080px;
margin: 0 auto;
padding: 48px 28px 120px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
header nav a {
margin-left: 18px;
text-decoration: none;
font-weight: 500;
color: var(--muted);
}
header nav a:hover {
color: var(--brand);
}
.badge {
background: #e0edff;
color: var(--brand);
padding: 6px 14px;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
display: inline-flex;
gap: 8px;
align-items: center;
}
.hero {
margin-top: 64px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
align-items: center;
}
.hero h1 {
font-size: clamp(36px, 6vw, 58px);
margin: 18px 0;
line-height: 1.15;
}
.hero p {
font-size: 18px;
color: var(--muted);
}
.cta {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-top: 32px;
}
.cta a {
padding: 14px 22px;
border-radius: 999px;
font-weight: 600;
text-decoration: none;
}
.cta-primary {
background: var(--brand);
color: #fff;
box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}
.cta-primary:hover {
background: var(--brand-dark);
}
.cta-secondary {
border: 1px solid rgba(148, 163, 184, 0.5);
color: var(--text);
background: transparent;
}
.hero-card {
background: var(--card);
border-radius: 28px;
padding: 32px;
box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
backdrop-filter: blur(8px);
}
.hero-card img {
width: 100%;
border-radius: 18px;
border: 1px solid rgba(148, 163, 184, 0.3);
}
.section {
margin-top: 96px;
}
.section h2 {
margin-bottom: 18px;
font-size: 32px;
}
.section p {
color: var(--muted);
max-width: 720px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
margin-top: 36px;
}
.feature-card {
background: rgba(255, 255, 255, 0.85);
border-radius: 20px;
padding: 24px;
border: 1px solid rgba(148, 163, 184, 0.2);
}
.feature-card h3 {
margin: 0 0 10px;
font-size: 20px;
}
.feature-card p {
margin: 0;
color: var(--muted);
line-height: 1.5;
}
.timeline {
display: flex;
flex-wrap: wrap;
gap: 24px;
margin-top: 24px;
}
.timeline-step {
flex: 1;
min-width: 220px;
border-left: 3px solid var(--brand);
padding-left: 16px;
}
.timeline-step span {
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.08em;
color: var(--brand);
}
footer {
margin-top: 120px;
padding: 48px 0 24px;
border-top: 1px solid rgba(148, 163, 184, 0.25);
color: var(--muted);
text-align: center;
}
@media (prefers-color-scheme: dark) {
body {
background: radial-gradient(circle at top right, #0f172a, #020617 60%, #020617);
--text: #f9fafb;
--muted: #94a3b8;
--card: rgba(15, 23, 42, 0.9);
}
.feature-card, .hero-card {
background: rgba(15, 23, 42, 0.85);
}
.cta-secondary {
color: var(--muted);
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div style="font-weight:700;font-size:20px;">MyNoteLM</div>
<nav>
<a href="#feature">特性</a>
<a href="#workflow">工作流</a>
<a href="#opensource">开源</a>
</nav>
</header>
<section class="hero">
<div>
<span class="badge">
<span>🚀</span>
桌面版 NotebookLM 替代
</span>
<h1>构建你的私有 AI 笔记实验室</h1>
<p>
MyNoteLM 是一个开源项目,将 NotebookLM 的核心体验带到本地桌面环境。
连接任意文档、PDF、网页和数据库,获得高速、私密、可审计的多模态知识助理。
</p>
<div class="cta">
<a class="cta-primary" href="https://github.com" target="_blank" rel="noopener noreferrer">GitHub 源码</a>
<a class="cta-secondary" href="#workflow">查看工作流</a>
</div>
</div>
<div class="hero-card">
<img src="https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=900&q=80" alt="MyNoteLM 桌面应用预览">
<p style="margin-top:16px;color:var(--muted);">所有数据留在本地,构建自定义模型记忆和提示模板。</p>
</div>
</section>
<section id="feature" class="section">
<h2>为什么选择 MyNoteLM?</h2>
<p>为研究者、团队和创作者打造的桌面知识工作站,在离线环境也能保证可控、可靠的 NotebookLM 体验。</p>
<div class="features">
<div class="feature-card">
<h3>私有部署</h3>
<p>所有数据本地存储,可接入企业内网模型或开源大模型,满足合规需求。</p>
</div>
<div class="feature-card">
<h3>多文档脑图</h3>
<p>通过语义索引将笔记、PDF、网页、数据库统一联结,快速生成研究摘要和引用。</p>
</div>
<div class="feature-card">
<h3>插件化工作台</h3>
<p>提供 NotebookLM 风格的提示模板、引用追踪、音频转写等插件,按需组合。</p>
</div>
<div class="feature-card">
<h3>协作与回溯</h3>
<p>可将会话、生成内容与原始资料同步到 Git 或云端,形成可追踪的知识资产。</p>
</div>
</div>
</section>
<section id="workflow" class="section">
<h2>典型工作流</h2>
<div class="timeline">
<div class="timeline-step">
<span>步骤 1</span>
<h3>导入你的资料</h3>
<p>拖入 PDF、DOCX、网页片段或数据库连接,MyNoteLM 自动生成向量化索引。</p>
</div>
<div class="timeline-step">
<span>步骤 2</span>
<h3>启动 Notebook</h3>
<p>选择模板或自定义提示,唤起 AI 助理,实时引用原文并生成结构化洞见。</p>
</div>
<div class="timeline-step">
<span>步骤 3</span>
<h3>同步与分享</h3>
<p>将结论导出为 Markdown、PDF 或同步 Git,维持完整的审计与协作记录。</p>
</div>
</div>
</section>
<section id="opensource" class="section">
<h2>坚持开源的桌面 AI 平台</h2>
<p>MyNoteLM 采用 MIT 许可证,你可以自由修改、复刻并自托管。欢迎为 UI、模型适配、同步后端等模块贡献代码,一起构建真正开放的 NotebookLM 体验。</p>
<div class="cta" style="margin-top:24px;">
<a class="cta-primary" href="https://github.com" target="_blank" rel="noopener noreferrer">Star 项目</a>
<a class="cta-secondary" href="mailto:hi@mynotelm.dev">加入社区</a>
</div>
</section>
<footer>
© <span id="year"></span> MyNoteLM. 开源、桌面、可信赖的 NotebookLM 替代方案。
</footer>
</div>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>