james123231 commited on
Commit
31795f3
·
verified ·
1 Parent(s): 31825d4

Replace "View on github" with "Log in" - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +521 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Open X Notes Ai
3
- emoji: 🔥
4
- colorFrom: gray
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: open-x-notes-ai
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,521 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Open X Notes AI | Privacy-Focused Research Assistant</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-text {
11
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
12
+ -webkit-background-clip: text;
13
+ background-clip: text;
14
+ color: transparent;
15
+ }
16
+ .note-card:hover {
17
+ transform: translateY(-2px);
18
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
19
+ }
20
+ .sidebar {
21
+ transition: all 0.3s ease;
22
+ }
23
+ @keyframes float {
24
+ 0% { transform: translateY(0px); }
25
+ 50% { transform: translateY(-10px); }
26
+ 100% { transform: translateY(0px); }
27
+ }
28
+ .floating {
29
+ animation: float 6s ease-in-out infinite;
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="bg-gray-50 font-sans antialiased">
34
+ <div class="min-h-screen flex flex-col">
35
+ <!-- Header -->
36
+ <header class="bg-white border-b border-gray-200 py-4 px-6">
37
+ <div class="max-w-7xl mx-auto flex justify-between items-center">
38
+ <div class="flex items-center space-x-2">
39
+ <div class="w-8 h-8 rounded-full bg-indigo-500 flex items-center justify-center text-white">
40
+ <i class="fas fa-book-open"></i>
41
+ </div>
42
+ <h1 class="text-xl font-bold text-gray-800">Open X <span class="gradient-text">Notes AI</span></h1>
43
+ </div>
44
+ <nav class="hidden md:flex space-x-8">
45
+ <a href="#" class="text-gray-600 hover:text-indigo-500 transition">Features</a>
46
+ <a href="#" class="text-gray-600 hover:text-indigo-500 transition">Pricing</a>
47
+ <a href="#" class="text-gray-600 hover:text-indigo-500 transition">Docs</a>
48
+ <a href="#" class="text-gray-600 hover:text-indigo-500 transition">Community</a>
49
+ </nav>
50
+ <div class="flex items-center space-x-4">
51
+ <button class="px-4 py-2 text-gray-600 hover:text-indigo-500 transition">Log in</button>
52
+ <button class="px-4 py-2 bg-indigo-500 text-white rounded-md hover:bg-indigo-600 transition">Get Started</button>
53
+ <button class="md:hidden text-gray-600">
54
+ <i class="fas fa-bars text-xl"></i>
55
+ </button>
56
+ </div>
57
+ </div>
58
+ </header>
59
+
60
+ <!-- Hero Section -->
61
+ <section class="py-16 px-6 bg-white">
62
+ <div class="max-w-7xl mx-auto flex flex-col md:flex-row items-center">
63
+ <div class="md:w-1/2 mb-10 md:mb-0">
64
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-800 leading-tight mb-6">
65
+ An <span class="gradient-text">open source</span>, AI-powered alternative to Google's Notebook LM
66
+ </h2>
67
+ <p class="text-lg text-gray-600 mb-8">
68
+ Why give Google more of our data when we can take control of our own research workflows?
69
+ </p>
70
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
71
+ <button class="px-6 py-3 bg-indigo-500 text-white rounded-md hover:bg-indigo-600 transition font-medium">
72
+ Get started <i class="fas fa-rocket ml-2"></i>
73
+ </button>
74
+ <button class="px-6 py-3 border border-gray-300 text-gray-700 rounded-md hover:bg-gray-50 transition font-medium">
75
+ Log in <i class="fas fa-sign-in-alt ml-2"></i>
76
+ </button>
77
+ </div>
78
+ </div>
79
+ <div class="md:w-1/2 flex justify-center">
80
+ <div class="relative w-full max-w-md">
81
+ <div class="absolute -top-10 -left-10 w-32 h-32 rounded-full bg-indigo-100 opacity-50 floating"></div>
82
+ <div class="absolute -bottom-10 -right-10 w-32 h-32 rounded-full bg-purple-100 opacity-50 floating" style="animation-delay: 1s;"></div>
83
+ <div class="relative bg-white rounded-xl shadow-lg overflow-hidden border border-gray-200">
84
+ <div class="bg-gray-800 px-4 py-3 flex items-center">
85
+ <div class="flex space-x-2">
86
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
87
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
88
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
89
+ </div>
90
+ <div class="ml-4 text-gray-300 text-sm">research-notes.md</div>
91
+ </div>
92
+ <div class="p-6">
93
+ <div class="mb-6">
94
+ <h3 class="text-lg font-semibold text-gray-800 mb-2">Research on Neural Networks</h3>
95
+ <p class="text-gray-600 text-sm">Created: Today | Last edited: 5 min ago</p>
96
+ </div>
97
+ <div class="prose max-w-none">
98
+ <p class="text-gray-700 mb-4">In a world dominated by Artificial Intelligence, having the ability to think 🧠 and acquire new knowledge 💡, is a skill that should not be a privilege for a few, nor restricted to a single provider.</p>
99
+ <div class="bg-indigo-50 border-l-4 border-indigo-500 p-4 mb-4">
100
+ <p class="text-indigo-700"><strong>AI Insight:</strong> Research suggests that decentralized knowledge management leads to more innovative thinking patterns.</p>
101
+ </div>
102
+ <p class="text-gray-700">Open Notebook empowers you to manage your research, generate AI-assisted notes, and interact with your content—on your terms.</p>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ <div class="flex justify-center mt-12">
109
+ <div class="relative">
110
+ <div class="w-32 h-32 rounded-full bg-indigo-100 opacity-20"></div>
111
+ <div class="absolute -bottom-2 -right-2 w-16 h-16 rounded-full bg-purple-100 opacity-20"></div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </section>
116
+
117
+ <!-- Value Proposition -->
118
+ <section class="py-16 px-6 bg-gray-50">
119
+ <!-- Our Vision -->
120
+ <section class="py-20 px-6 bg-gradient-to-b from-white to-indigo-50">
121
+ <div class="max-w-7xl mx-auto">
122
+ <div class="text-center mb-16 relative">
123
+ <div class="absolute -top-6 left-1/2 transform -translate-x-1/2 w-16 h-16 rounded-full bg-indigo-100 opacity-30"></div>
124
+ <h2 class="text-4xl font-bold text-gray-800 mb-4 relative">
125
+ <span class="relative z-10">Our Vision</span>
126
+ <span class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-24 h-1 bg-indigo-500 rounded-full"></span>
127
+ </h2>
128
+ <h3 class="text-3xl text-transparent bg-clip-text bg-gradient-to-r from-indigo-500 to-purple-600 mb-6 font-medium">
129
+ Empowering Self-Teaching and Knowledge Mastery
130
+ </h3>
131
+ <div class="relative max-w-4xl mx-auto">
132
+ <div class="absolute -left-8 top-0 w-16 h-16 rounded-full bg-purple-100 opacity-20"></div>
133
+ <div class="relative bg-white p-8 rounded-xl shadow-sm border border-gray-100 mb-8">
134
+ <div class="flex items-start">
135
+ <div class="flex-shrink-0 mr-4 mt-1">
136
+ <div class="w-8 h-8 rounded-full bg-indigo-100 text-indigo-500 flex items-center justify-center">
137
+ <i class="fas fa-lightbulb"></i>
138
+ </div>
139
+ </div>
140
+ <p class="text-lg text-gray-700">
141
+ We envision a future where knowledge management is both powerful and private. At Open X Notes AI, we aim to revolutionize the way individuals learn, research, and engage with their own knowledge, creating an ecosystem where Artificial Intelligence enhances human capability without exploiting our context.
142
+ </p>
143
+ </div>
144
+ </div>
145
+
146
+ <div class="relative bg-white p-8 rounded-xl shadow-sm border border-gray-100">
147
+ <div class="flex items-start">
148
+ <div class="flex-shrink-0 mr-4 mt-1">
149
+ <div class="w-8 h-8 rounded-full bg-purple-100 text-purple-500 flex items-center justify-center">
150
+ <i class="fas fa-bullseye"></i>
151
+ </div>
152
+ </div>
153
+ <p class="text-lg text-gray-700">
154
+ Our mission is to build tools that enable everyone to transform their knowledge into something tangible, flexible, and deeply personal—learning that is adaptable, creative, and entirely in your hands.
155
+ </p>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </section>
162
+ <div class="max-w-7xl mx-auto">
163
+ <div class="text-center mb-16">
164
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Take Back Control of Your Research</h2>
165
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">An AI-powered privacy-first approach to knowledge management that respects your data</p>
166
+ </div>
167
+ <div class="grid md:grid-cols-3 gap-8">
168
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
169
+ <div class="w-12 h-12 rounded-full bg-indigo-100 text-indigo-500 flex items-center justify-center mb-6">
170
+ <i class="fas fa-lock text-xl"></i>
171
+ </div>
172
+ <h3 class="text-xl font-semibold text-gray-800 mb-3">Privacy First</h3>
173
+ <p class="text-gray-600">Your data never leaves your device unless you choose to share it. No tracking, no ads, no data mining.</p>
174
+ </div>
175
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
176
+ <div class="w-12 h-12 rounded-full bg-purple-100 text-purple-500 flex items-center justify-center mb-6">
177
+ <i class="fas fa-brain text-xl"></i>
178
+ </div>
179
+ <h3 class="text-xl font-semibold text-gray-800 mb-3">AI-Assisted</h3>
180
+ <p class="text-gray-600">Local AI models help you generate insights, summarize content, and make connections in your research.</p>
181
+ </div>
182
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
183
+ <div class="w-12 h-12 rounded-full bg-green-100 text-green-500 flex items-center justify-center mb-6">
184
+ <i class="fab fa-github text-xl"></i>
185
+ </div>
186
+ <h3 class="text-xl font-semibold text-gray-800 mb-3">Open Source</h3>
187
+ <p class="text-gray-600">Transparent codebase that anyone can audit, modify, and contribute to. No hidden agendas.</p>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </section>
192
+
193
+ <!-- Features -->
194
+ <section class="py-16 px-6 bg-white">
195
+ <!-- Path to Mastery -->
196
+ <section class="py-16 px-6 bg-gray-50">
197
+ <div class="max-w-7xl mx-auto">
198
+ <div class="text-center mb-16">
199
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">The Path to Self-Directed Mastery</h2>
200
+ <p class="text-xl text-gray-600 max-w-4xl mx-auto">
201
+ The best way to learn is to create, connect, and actively engage. We believe in making self-teaching accessible to everyone, inspired by principles of lifelong learning, the Zettelkasten method, and the mindset of ultralearning.
202
+ </p>
203
+ </div>
204
+
205
+ <div class="grid md:grid-cols-2 gap-8 mb-16">
206
+ <!-- Pillar 1 -->
207
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
208
+ <div class="flex items-center mb-6">
209
+ <div class="w-12 h-12 rounded-full bg-indigo-100 text-indigo-500 flex items-center justify-center mr-4">
210
+ <span class="text-xl font-bold">1</span>
211
+ </div>
212
+ <h3 class="text-xl font-semibold text-gray-800">Learning Requires Action</h3>
213
+ </div>
214
+ <div class="pl-16">
215
+ <p class="text-gray-600 mb-4"><strong>Elaboration:</strong> Create your own thoughts and notes. Learning isn't passive—it's an active process of engagement. Write, refine, and develop your own perspective.</p>
216
+ <p class="text-gray-600"><strong>Curate and Organize:</strong> Take the knowledge you have gathered, reorganize it, refine it, and shape it into something new. Cleaning up the chaos and turning it into structure is a key step to learning deeply.</p>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- Pillar 2 -->
221
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
222
+ <div class="flex items-center mb-6">
223
+ <div class="w-12 h-12 rounded-full bg-purple-100 text-purple-500 flex items-center justify-center mr-4">
224
+ <span class="text-xl font-bold">2</span>
225
+ </div>
226
+ <h3 class="text-xl font-semibold text-gray-800">Seamless Integration</h3>
227
+ </div>
228
+ <div class="pl-16">
229
+ <p class="text-gray-600 mb-4"><strong>Universal Content Support:</strong> Work with any type of content—articles, videos, presentations, or even your own fleeting thoughts. Open X Notes AI makes it easy to gather and manage it all in one place.</p>
230
+ <p class="text-gray-600"><strong>Cross-Platform Compatibility:</strong> Access your thoughts and learning materials wherever you are. Whether you are on a desktop, tablet, or mobile, your knowledge is always within reach.</p>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Pillar 3 -->
235
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
236
+ <div class="flex items-center mb-6">
237
+ <div class="w-12 h-12 rounded-full bg-blue-100 text-blue-500 flex items-center justify-center mr-4">
238
+ <span class="text-xl font-bold">3</span>
239
+ </div>
240
+ <h3 class="text-xl font-semibold text-gray-800">AI as a Cognitive Partner</h3>
241
+ </div>
242
+ <div class="pl-16">
243
+ <p class="text-gray-600 mb-4"><strong>Processing:</strong> Why spend time going through thousands of pages manually when AI can help surface what's most important? Let AI work for you.</p>
244
+ <p class="text-gray-600 mb-4"><strong>Researching:</strong> AI can sift through vast amounts of information to help you find those hidden gems you may not even know to look for.</p>
245
+ <p class="text-gray-600"><strong>Question Your Thinking:</strong> Imagine having a thinking partner who constantly challenges your assumptions and helps you see different perspectives—AI can be that partner, always pushing your understanding further.</p>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Pillar 4 -->
250
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
251
+ <div class="flex items-center mb-6">
252
+ <div class="w-12 h-12 rounded-full bg-green-100 text-green-500 flex items-center justify-center mr-4">
253
+ <span class="text-xl font-bold">4</span>
254
+ </div>
255
+ <h3 class="text-xl font-semibold text-gray-800">CONTEXT is King</h3>
256
+ </div>
257
+ <div class="pl-16">
258
+ <p class="text-gray-600 mb-4"><strong>Your Context:</strong> The more the AI understands about your goals and motivations, the better it can help you. We aim to make your learning experience deeply personalized.</p>
259
+ <p class="text-gray-600"><strong>Privacy First:</strong> Your context is the most personal and valuable asset you have. At Open X Notes AI, we prioritize your privacy, ensuring you maintain complete control over your data.</p>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Pillar 5 -->
264
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition md:col-span-2">
265
+ <div class="flex items-center mb-6">
266
+ <div class="w-12 h-12 rounded-full bg-yellow-100 text-yellow-500 flex items-center justify-center mr-4">
267
+ <span class="text-xl font-bold">5</span>
268
+ </div>
269
+ <h3 class="text-xl font-semibold text-gray-800">Community-Driven Development</h3>
270
+ </div>
271
+ <div class="pl-16">
272
+ <p class="text-gray-600 mb-4"><strong>Open Source Forever:</strong> Maintaining transparency, trust, and the power to evolve without restrictions.</p>
273
+ <p class="text-gray-600"><strong>Community Extensions:</strong> We envision a vibrant ecosystem of community-built plugins, where users collectively push the boundaries of what Open X Notes AI can achieve.</p>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Zettelkasten Method -->
279
+ <div class="bg-white p-8 rounded-xl shadow-sm mb-12">
280
+ <h3 class="text-2xl font-semibold text-gray-800 mb-6 text-center">Embracing the Zettelkasten Method</h3>
281
+ <p class="text-gray-600 mb-6">
282
+ At the core of our vision is a Zettelkasten-inspired approach to knowledge management. We believe in capturing ideas in atomic, concise notes and interlinking them to form a network of insights that grows with you. Your knowledge should evolve into a web of interconnected ideas—a personal knowledge graph—that helps you uncover patterns, generate new insights, and explore ideas in ways that traditional notes cannot offer.
283
+ </p>
284
+ <div class="grid md:grid-cols-3 gap-6">
285
+ <div class="bg-indigo-50 p-6 rounded-lg">
286
+ <h4 class="font-semibold text-indigo-700 mb-3">Atomic Notes</h4>
287
+ <p class="text-gray-700">Break information down into its most essential pieces, capturing single concepts concisely.</p>
288
+ </div>
289
+ <div class="bg-purple-50 p-6 rounded-lg">
290
+ <h4 class="font-semibold text-purple-700 mb-3">Linking and Exploring Connections</h4>
291
+ <p class="text-gray-700">Like a spider's web, your ideas grow richer as they connect to each other, forming a network of relationships.</p>
292
+ </div>
293
+ <div class="bg-blue-50 p-6 rounded-lg">
294
+ <h4 class="font-semibold text-blue-700 mb-3">Creativity Through Connections</h4>
295
+ <p class="text-gray-700">The Zettelkasten method helps spark creativity by encouraging you to make unexpected connections between different ideas, unlocking new perspectives and insights.</p>
296
+ </div>
297
+ </div>
298
+ </div>
299
+
300
+ <!-- Ultralearning -->
301
+ <div class="bg-white p-8 rounded-xl shadow-sm">
302
+ <h3 class="text-2xl font-semibold text-gray-800 mb-6 text-center">The Mindset of Ultralearning</h3>
303
+ <p class="text-gray-600 mb-6">
304
+ We also draw inspiration from the philosophy of ultralearning—self-directed, intense, and strategic learning that prioritizes deep understanding over superficial familiarity. With Open X Notes AI, we want to empower learners to:
305
+ </p>
306
+ <div class="grid md:grid-cols-3 gap-6">
307
+ <div class="bg-green-50 p-6 rounded-lg">
308
+ <h4 class="font-semibold text-green-700 mb-3">Learn by Doing</h4>
309
+ <p class="text-gray-700">Practice directly in real-world contexts. The most effective way to learn is by applying your knowledge.</p>
310
+ </div>
311
+ <div class="bg-yellow-50 p-6 rounded-lg">
312
+ <h4 class="font-semibold text-yellow-700 mb-3">Direct Your Own Journey</h4>
313
+ <p class="text-gray-700">Every learner is different. Open X Notes AI provides the flexibility to choose what and how you want to learn, giving you complete control over your journey.</p>
314
+ </div>
315
+ <div class="bg-red-50 p-6 rounded-lg">
316
+ <h4 class="font-semibold text-red-700 mb-3">Challenge Yourself</h4>
317
+ <p class="text-gray-700">Ultralearning is about stretching beyond comfort zones. Use AI to test your understanding, push your limits, and develop mastery through retrieval, active engagement, and feedback.</p>
318
+ </div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </section>
323
+ <div class="max-w-7xl mx-auto">
324
+ <div class="flex flex-col md:flex-row items-center mb-16">
325
+ <div class="md:w-1/2 mb-10 md:mb-0">
326
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Organize Your Knowledge</h2>
327
+ <p class="text-gray-600 mb-6">Create hierarchical notebooks, tag your content, and find exactly what you need with powerful search capabilities.</p>
328
+ <ul class="space-y-4">
329
+ <li class="flex items-start">
330
+ <div class="flex-shrink-0 mt-1">
331
+ <div class="w-6 h-6 rounded-full bg-indigo-100 text-indigo-500 flex items-center justify-center">
332
+ <i class="fas fa-check text-xs"></i>
333
+ </div>
334
+ </div>
335
+ <p class="ml-3 text-gray-700">Nested notebooks for complex research projects</p>
336
+ </li>
337
+ <li class="flex items-start">
338
+ <div class="flex-shrink-0 mt-1">
339
+ <div class="w-6 h-6 rounded-full bg-indigo-100 text-indigo-500 flex items-center justify-center">
340
+ <i class="fas fa-check text-xs"></i>
341
+ </div>
342
+ </div>
343
+ <p class="ml-3 text-gray-700">Smart tags and automatic categorization</p>
344
+ </li>
345
+ <li class="flex items-start">
346
+ <div class="flex-shrink-0 mt-1">
347
+ <div class="w-6 h-6 rounded-full bg-indigo-100 text-indigo-500 flex items-center justify-center">
348
+ <i class="fas fa-check text-xs"></i>
349
+ </div>
350
+ </div>
351
+ <p class="ml-3 text-gray-700">Full-text search with semantic understanding</p>
352
+ </li>
353
+ </ul>
354
+ </div>
355
+ <div class="md:w-1/2 flex justify-center">
356
+ <div class="relative w-full max-w-md">
357
+ <div class="bg-white rounded-xl shadow-md border border-gray-200 overflow-hidden">
358
+ <div class="bg-gray-100 px-4 py-3 border-b border-gray-200 flex items-center">
359
+ <div class="flex space-x-2">
360
+ <div class="w-2 h-2 rounded-full bg-gray-400"></div>
361
+ <div class="w-2 h-2 rounded-full bg-gray-400"></div>
362
+ <div class="w-2 h-2 rounded-full bg-gray-400"></div>
363
+ </div>
364
+ <div class="ml-4 text-gray-500 text-sm">Notebook Explorer</div>
365
+ </div>
366
+ <div class="p-4">
367
+ <div class="flex items-center justify-between mb-4">
368
+ <h3 class="font-medium text-gray-700">My Research</h3>
369
+ <button class="text-gray-500 hover:text-indigo-500">
370
+ <i class="fas fa-plus"></i>
371
+ </button>
372
+ </div>
373
+ <div class="space-y-2">
374
+ <div class="flex items-center justify-between p-2 hover:bg-gray-50 rounded cursor-pointer">
375
+ <div class="flex items-center">
376
+ <i class="fas fa-folder text-yellow-400 mr-3"></i>
377
+ <span>Artificial Intelligence</span>
378
+ </div>
379
+ <i class="fas fa-chevron-right text-gray-400 text-xs"></i>
380
+ </div>
381
+ <div class="flex items-center justify-between p-2 hover:bg-gray-50 rounded cursor-pointer">
382
+ <div class="flex items-center">
383
+ <i class="fas fa-folder text-yellow-400 mr-3"></i>
384
+ <span>Neuroscience</span>
385
+ </div>
386
+ <i class="fas fa-chevron-right text-gray-400 text-xs"></i>
387
+ </div>
388
+ <div class="flex items-center justify-between p-2 hover:bg-gray-50 rounded cursor-pointer">
389
+ <div class="flex items-center">
390
+ <i class="fas fa-folder text-yellow-400 mr-3"></i>
391
+ <span>Quantum Computing</span>
392
+ </div>
393
+ <i class="fas fa-chevron-right text-gray-400 text-xs"></i>
394
+ </div>
395
+ <div class="flex items-center justify-between p-2 hover:bg-gray-50 rounded cursor-pointer">
396
+ <div class="flex items-center">
397
+ <i class="fas fa-file-alt text-blue-400 mr-3"></i>
398
+ <span>Research Methodology</span>
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ </div>
406
+ </div>
407
+ </div>
408
+ </section>
409
+
410
+ <!-- CTA -->
411
+ <section class="py-16 px-6 bg-gradient-to-r from-indigo-500 to-purple-600 text-white">
412
+ <div class="max-w-7xl mx-auto text-center">
413
+ <h2 class="text-3xl font-bold mb-6">Ready to take control of your research?</h2>
414
+ <p class="text-xl mb-8 max-w-3xl mx-auto opacity-90">Join thousands of researchers, students, and knowledge workers who've switched to Open Notebook.</p>
415
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
416
+ <button class="px-8 py-3 bg-white text-indigo-600 rounded-md hover:bg-gray-100 transition font-medium">
417
+ Download Now <i class="fas fa-arrow-down ml-2"></i>
418
+ </button>
419
+ <button class="px-8 py-3 border border-white text-white rounded-md hover:bg-white hover:bg-opacity-10 transition font-medium">
420
+ View Demo <i class="fas fa-play-circle ml-2"></i>
421
+ </button>
422
+ </div>
423
+ </div>
424
+ </section>
425
+
426
+ <!-- Footer -->
427
+ <footer class="bg-gray-900 text-gray-400 py-12 px-6">
428
+ <div class="max-w-7xl mx-auto">
429
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
430
+ <div>
431
+ <h3 class="text-white font-medium mb-4">Product</h3>
432
+ <ul class="space-y-2">
433
+ <li><a href="#" class="hover:text-white transition">Features</a></li>
434
+ <li><a href="#" class="hover:text-white transition">Pricing</a></li>
435
+ <li><a href="#" class="hover:text-white transition">Download</a></li>
436
+ <li><a href="#" class="hover:text-white transition">Roadmap</a></li>
437
+ </ul>
438
+ </div>
439
+ <div>
440
+ <h3 class="text-white font-medium mb-4">Resources</h3>
441
+ <ul class="space-y-2">
442
+ <li><a href="#" class="hover:text-white transition">Documentation</a></li>
443
+ <li><a href="#" class="hover:text-white transition">Tutorials</a></li>
444
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
445
+ <li><a href="#" class="hover:text-white transition">API</a></li>
446
+ </ul>
447
+ </div>
448
+ <div>
449
+ <h3 class="text-white font-medium mb-4">Company</h3>
450
+ <ul class="space-y-2">
451
+ <li><a href="#" class="hover:text-white transition">About</a></li>
452
+ <li><a href="#" class="hover:text-white transition">Privacy</a></li>
453
+ <li><a href="#" class="hover:text-white transition">Terms</a></li>
454
+ <li><a href="#" class="hover:text-white transition">Contact</a></li>
455
+ </ul>
456
+ </div>
457
+ <div>
458
+ <h3 class="text-white font-medium mb-4">Connect</h3>
459
+ <div class="flex space-x-4 mb-4">
460
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-indigo-500 hover:text-white transition">
461
+ <i class="fab fa-github"></i>
462
+ </a>
463
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-500 hover:text-white transition">
464
+ <i class="fab fa-twitter"></i>
465
+ </a>
466
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-red-500 hover:text-white transition">
467
+ <i class="fab fa-youtube"></i>
468
+ </a>
469
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-600 hover:text-white transition">
470
+ <i class="fab fa-linkedin-in"></i>
471
+ </a>
472
+ </div>
473
+ <p class="text-sm">Subscribe to our newsletter</p>
474
+ <div class="mt-2 flex">
475
+ <input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-800 text-white rounded-l-md focus:outline-none focus:ring-1 focus:ring-indigo-500 w-full">
476
+ <button class="px-4 py-2 bg-indigo-500 text-white rounded-r-md hover:bg-indigo-600 transition">
477
+ <i class="fas fa-paper-plane"></i>
478
+ </button>
479
+ </div>
480
+ </div>
481
+ </div>
482
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
483
+ <div class="flex items-center mb-4 md:mb-0">
484
+ <div class="w-6 h-6 rounded-full bg-indigo-500 flex items-center justify-center text-white mr-2">
485
+ <i class="fas fa-book-open text-xs"></i>
486
+ </div>
487
+ <span class="text-white font-medium">Open X <span class="gradient-text">Notes AI</span></span>
488
+ </div>
489
+ <div class="text-sm">
490
+ &copy; 2023 Open X Notes AI. All rights reserved.
491
+ </div>
492
+ </div>
493
+ </div>
494
+ </footer>
495
+ </div>
496
+
497
+ <script>
498
+ // Simple mobile menu toggle
499
+ document.querySelector('button[aria-label="Toggle menu"]').addEventListener('click', function() {
500
+ const menu = document.querySelector('#mobile-menu');
501
+ menu.classList.toggle('hidden');
502
+ });
503
+
504
+ // Floating animation for elements
505
+ const floatingElements = document.querySelectorAll('.floating');
506
+ floatingElements.forEach((el, index) => {
507
+ el.style.animationDelay = `${index * 0.5}s`;
508
+ });
509
+
510
+ // Smooth scrolling for anchor links
511
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
512
+ anchor.addEventListener('click', function (e) {
513
+ e.preventDefault();
514
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
515
+ behavior: 'smooth'
516
+ });
517
+ });
518
+ });
519
+ </script>
520
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=james123231/open-x-notes-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
521
+ </html>