mohammedmaruf commited on
Commit
a50ea08
·
verified ·
1 Parent(s): 91ca164

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +264 -19
index.html CHANGED
@@ -1,19 +1,264 @@
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>Notionist - Simple tools for complex ideas</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600&display=swap" rel="stylesheet">
9
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/lucide/0.263.1/lucide.min.js"></script>
10
+ <style>
11
+ * {
12
+ font-family: 'JetBrains Mono', monospace;
13
+ }
14
+ </style>
15
+ </head>
16
+ <body class="bg-white text-gray-900 min-h-screen">
17
+ <!-- Header -->
18
+ <header class="border-b border-gray-200">
19
+ <div class="max-w-6xl mx-auto px-6 py-4">
20
+ <nav class="flex justify-between items-center">
21
+ <div class="text-xl font-medium">notionist</div>
22
+
23
+ <!-- Desktop Navigation -->
24
+ <div class="hidden md:flex items-center space-x-8">
25
+ <a href="#" class="text-gray-600 hover:text-gray-900">features</a>
26
+ <a href="pricing.html" class="text-gray-600 hover:text-gray-900">pricing</a>
27
+ <a href="#" class="text-gray-600 hover:text-gray-900">docs</a>
28
+ <a href="#" class="text-gray-600 hover:text-gray-900">support</a>
29
+ <a href="#" class="px-4 py-2 border border-gray-300 rounded-md hover:bg-gray-50">sign in</a>
30
+ </div>
31
+
32
+ <!-- Mobile Menu Button -->
33
+ <button class="md:hidden p-2" onclick="toggleMobileMenu()" id="mobile-menu-btn">
34
+ <span class="block w-5 h-0.5 bg-gray-900 mb-1"></span>
35
+ <span class="block w-5 h-0.5 bg-gray-900 mb-1"></span>
36
+ <span class="block w-5 h-0.5 bg-gray-900"></span>
37
+ </button>
38
+ </nav>
39
+
40
+ <!-- Mobile Navigation -->
41
+ <div class="md:hidden hidden border-t border-gray-200 mt-4 pt-4" id="mobile-menu">
42
+ <div class="flex flex-col space-y-3">
43
+ <a href="#" class="text-gray-600 hover:text-gray-900">features</a>
44
+ <a href="pricing.html" class="text-gray-600 hover:text-gray-900">pricing</a>
45
+ <a href="#" class="text-gray-600 hover:text-gray-900">docs</a>
46
+ <a href="#" class="text-gray-600 hover:text-gray-900">support</a>
47
+ <a href="#" class="px-4 py-2 border border-gray-300 rounded-md hover:bg-gray-50 text-center">sign in</a>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </header>
52
+
53
+ <!-- Main Content -->
54
+ <main>
55
+ <!-- Hero Section -->
56
+ <section class="max-w-4xl mx-auto px-6 py-20 text-center">
57
+ <h1 class="text-5xl md:text-6xl font-light mb-6">
58
+ simple tools for<br>
59
+ manage your team in notion
60
+ </h1>
61
+ <p class="text-xl text-gray-600 mb-12 max-w-2xl mx-auto">
62
+ organize your thoughts, manage your projects, and collaborate with your team.
63
+ all in one minimal workspace.
64
+ </p>
65
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
66
+ <a href="#" class="px-8 py-3 bg-black text-white rounded-md hover:bg-gray-800">
67
+ start free trial
68
+ </a>
69
+ <a href="#" class="px-8 py-3 border border-gray-300 rounded-md hover:bg-gray-50">
70
+ watch demo
71
+ </a>
72
+ </div>
73
+ </section>
74
+
75
+ <!-- Features Section -->
76
+ <section class="max-w-6xl mx-auto px-6 py-20">
77
+ <div class="text-center mb-16">
78
+ <h2 class="text-3xl font-light mb-4">everything you need</h2>
79
+ <p class="text-gray-600 max-w-2xl mx-auto">
80
+ powerful features designed to stay out of your way
81
+ </p>
82
+ </div>
83
+
84
+ <div class="grid md:grid-cols-3 gap-12">
85
+ <div class="text-center">
86
+ <div class="w-12 h-12 bg-gray-100 rounded-lg mx-auto mb-4 flex items-center justify-center">
87
+ <i data-lucide="file-text" class="w-6 h-6 text-gray-600"></i>
88
+ </div>
89
+ <h3 class="text-lg font-medium mb-2">notes & docs</h3>
90
+ <p class="text-gray-600 text-sm">
91
+ markdown support, rich text editing, and seamless organization
92
+ </p>
93
+ </div>
94
+
95
+ <div class="text-center">
96
+ <div class="w-12 h-12 bg-gray-100 rounded-lg mx-auto mb-4 flex items-center justify-center">
97
+ <i data-lucide="kanban-square" class="w-6 h-6 text-gray-600"></i>
98
+ </div>
99
+ <h3 class="text-lg font-medium mb-2">project boards</h3>
100
+ <p class="text-gray-600 text-sm">
101
+ kanban boards, task management, and progress tracking
102
+ </p>
103
+ </div>
104
+
105
+ <div class="text-center">
106
+ <div class="w-12 h-12 bg-gray-100 rounded-lg mx-auto mb-4 flex items-center justify-center">
107
+ <i data-lucide="users" class="w-6 h-6 text-gray-600"></i>
108
+ </div>
109
+ <h3 class="text-lg font-medium mb-2">collaboration</h3>
110
+ <p class="text-gray-600 text-sm">
111
+ real-time editing, comments, and team workspaces
112
+ </p>
113
+ </div>
114
+ </div>
115
+ </section>
116
+
117
+ <!-- Stats Section -->
118
+ <section class="bg-gray-50 py-20">
119
+ <div class="max-w-4xl mx-auto px-6">
120
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
121
+ <div>
122
+ <div class="text-3xl font-light mb-2">10k+</div>
123
+ <div class="text-gray-600 text-sm">active users</div>
124
+ </div>
125
+ <div>
126
+ <div class="text-3xl font-light mb-2">50k+</div>
127
+ <div class="text-gray-600 text-sm">notes created</div>
128
+ </div>
129
+ <div>
130
+ <div class="text-3xl font-light mb-2">99.9%</div>
131
+ <div class="text-gray-600 text-sm">uptime</div>
132
+ </div>
133
+ <div>
134
+ <div class="text-3xl font-light mb-2">24/7</div>
135
+ <div class="text-gray-600 text-sm">support</div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Testimonials Section -->
142
+ <section class="max-w-4xl mx-auto px-6 py-20">
143
+ <div class="text-center mb-16">
144
+ <h2 class="text-3xl font-light mb-4">what people say</h2>
145
+ </div>
146
+
147
+ <div class="grid md:grid-cols-2 gap-8">
148
+ <div class="border border-gray-200 rounded-lg p-6">
149
+ <p class="text-gray-600 mb-4">
150
+ "finally, a tool that doesn't get in the way of my thinking.
151
+ notionist is exactly what i needed for my research."
152
+ </p>
153
+ <div class="flex items-center">
154
+ <div class="w-10 h-10 bg-gray-200 rounded-full mr-3"></div>
155
+ <div>
156
+ <div class="font-medium text-sm">sarah chen</div>
157
+ <div class="text-gray-500 text-xs">researcher, stanford</div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="border border-gray-200 rounded-lg p-6">
163
+ <p class="text-gray-600 mb-4">
164
+ "switched from notion and never looked back.
165
+ the simplicity is refreshing and powerful."
166
+ </p>
167
+ <div class="flex items-center">
168
+ <div class="w-10 h-10 bg-gray-200 rounded-full mr-3"></div>
169
+ <div>
170
+ <div class="font-medium text-sm">alex rivera</div>
171
+ <div class="text-gray-500 text-xs">product manager, stripe</div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </section>
177
+
178
+ <!-- CTA Section -->
179
+ <section class="bg-black text-white py-20">
180
+ <div class="max-w-4xl mx-auto px-6 text-center">
181
+ <h2 class="text-4xl font-light mb-6">
182
+ ready to get started?
183
+ </h2>
184
+ <p class="text-gray-400 mb-8 text-lg">
185
+ join thousands of users who have simplified their workflow
186
+ </p>
187
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
188
+ <a href="#" class="px-8 py-3 bg-white text-black rounded-md hover:bg-gray-100">
189
+ start free trial
190
+ </a>
191
+ <a href="pricing.html" class="px-8 py-3 border border-gray-600 rounded-md hover:bg-gray-900">
192
+ view pricing
193
+ </a>
194
+ </div>
195
+ </div>
196
+ </section>
197
+ </main>
198
+
199
+ <!-- Footer -->
200
+ <footer class="border-t border-gray-200 bg-gray-50">
201
+ <div class="max-w-6xl mx-auto px-6 py-12">
202
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
203
+ <div class="col-span-1 sm:col-span-2 lg:col-span-1">
204
+ <div class="text-xl font-medium mb-4">notionist</div>
205
+ <p class="text-gray-600 text-sm">
206
+ simple tools for complex ideas.
207
+ </p>
208
+ </div>
209
+
210
+ <div>
211
+ <h4 class="font-medium mb-3">product</h4>
212
+ <ul class="space-y-2 text-sm text-gray-600">
213
+ <li><a href="#" class="hover:text-gray-900">features</a></li>
214
+ <li><a href="pricing.html" class="hover:text-gray-900">pricing</a></li>
215
+ <li><a href="#" class="hover:text-gray-900">changelog</a></li>
216
+ <li><a href="#" class="hover:text-gray-900">roadmap</a></li>
217
+ </ul>
218
+ </div>
219
+
220
+ <div>
221
+ <h4 class="font-medium mb-3">support</h4>
222
+ <ul class="space-y-2 text-sm text-gray-600">
223
+ <li><a href="#" class="hover:text-gray-900">documentation</a></li>
224
+ <li><a href="#" class="hover:text-gray-900">help center</a></li>
225
+ <li><a href="#" class="hover:text-gray-900">contact</a></li>
226
+ <li><a href="#" class="hover:text-gray-900">status</a></li>
227
+ </ul>
228
+ </div>
229
+
230
+ <div>
231
+ <h4 class="font-medium mb-3">company</h4>
232
+ <ul class="space-y-2 text-sm text-gray-600">
233
+ <li><a href="#" class="hover:text-gray-900">about</a></li>
234
+ <li><a href="#" class="hover:text-gray-900">blog</a></li>
235
+ <li><a href="#" class="hover:text-gray-900">careers</a></li>
236
+ <li><a href="#" class="hover:text-gray-900">privacy</a></li>
237
+ </ul>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="border-t border-gray-200 mt-8 pt-8 flex flex-col sm:flex-row justify-between items-center text-sm text-gray-600 space-y-4 sm:space-y-0">
242
+ <div>© 2025 notionist. all rights reserved.</div>
243
+ <div class="flex space-x-6">
244
+ <a href="#" class="hover:text-gray-900">terms</a>
245
+ <a href="#" class="hover:text-gray-900">privacy</a>
246
+ <a href="#" class="hover:text-gray-900">cookies</a>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ </footer>
251
+
252
+ <script>
253
+ function toggleMobileMenu() {
254
+ const menu = document.getElementById('mobile-menu');
255
+ menu.classList.toggle('hidden');
256
+ }
257
+
258
+ // Initialize Lucide icons
259
+ document.addEventListener('DOMContentLoaded', function() {
260
+ lucide.createIcons();
261
+ });
262
+ </script>
263
+ </body>
264
+ </html>