aegisceo commited on
Commit
3617731
·
verified ·
1 Parent(s): e63279e

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +380 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Personal Assistant
3
- emoji: 📚
4
- colorFrom: blue
5
- colorTo: purple
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: personal-assistant
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: red
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,380 @@
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>AI Personal Assistant Workflow - Dark Mode</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
+ <script>
10
+ tailwind.config = {
11
+ darkMode: 'class',
12
+ theme: {
13
+ extend: {
14
+ colors: {
15
+ dark: {
16
+ 100: '#E0E0E0',
17
+ 200: '#B0B0B0',
18
+ 300: '#909090',
19
+ 400: '#707070',
20
+ 500: '#505050',
21
+ 600: '#383838',
22
+ 700: '#282828',
23
+ 800: '#202020',
24
+ 900: '#181818',
25
+ }
26
+ }
27
+ }
28
+ }
29
+ }
30
+ </script>
31
+ <style>
32
+ @keyframes pulse {
33
+ 0%, 100% { opacity: 1; }
34
+ 50% { opacity: 0.5; }
35
+ }
36
+ .pulse-animation {
37
+ animation: pulse 2s infinite;
38
+ }
39
+ .gradient-border {
40
+ position: relative;
41
+ border-radius: 1rem;
42
+ }
43
+ .gradient-border::before {
44
+ content: '';
45
+ position: absolute;
46
+ top: -2px;
47
+ left: -2px;
48
+ right: -2px;
49
+ bottom: -2px;
50
+ z-index: -1;
51
+ border-radius: 1rem;
52
+ background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
53
+ background-size: 200% 200%;
54
+ animation: gradient 3s ease infinite;
55
+ }
56
+ @keyframes gradient {
57
+ 0% { background-position: 0% 50%; }
58
+ 50% { background-position: 100% 50%; }
59
+ 100% { background-position: 0% 50%; }
60
+ }
61
+ .email-card:hover {
62
+ transform: translateY(-5px);
63
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
64
+ }
65
+ body {
66
+ background-color: #181818;
67
+ color: #E0E0E0;
68
+ }
69
+ </style>
70
+ </head>
71
+ <body class="dark:bg-dark-900 min-h-screen font-sans">
72
+ <div class="container mx-auto px-4 py-12">
73
+ <!-- Header -->
74
+ <div class="text-center mb-16">
75
+ <h1 class="text-4xl md:text-5xl font-bold text-dark-100 mb-4">
76
+ <span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">
77
+ AI Personal Assistant
78
+ </span>
79
+ </h1>
80
+ <p class="text-xl text-dark-300 max-w-3xl mx-auto">
81
+ Your intelligent inbox manager that prioritizes important communications and keeps you on top of critical action items
82
+ </p>
83
+ </div>
84
+
85
+ <!-- Main Dashboard -->
86
+ <div class="gradient-border p-1 mb-16">
87
+ <div class="bg-dark-800 rounded-xl p-8 shadow-sm">
88
+ <div class="flex flex-col lg:flex-row gap-8">
89
+ <!-- Inbox Overview -->
90
+ <div class="lg:w-1/3">
91
+ <div class="flex items-center mb-6">
92
+ <div class="bg-blue-900 bg-opacity-30 p-3 rounded-full mr-4">
93
+ <i class="fas fa-inbox text-blue-400 text-xl"></i>
94
+ </div>
95
+ <h2 class="text-2xl font-semibold text-dark-100">Inbox Intelligence</h2>
96
+ </div>
97
+
98
+ <div class="space-y-4">
99
+ <div class="bg-blue-900 bg-opacity-10 p-4 rounded-lg border border-blue-900 border-opacity-20">
100
+ <div class="flex justify-between items-center mb-2">
101
+ <span class="text-sm font-medium text-blue-300">Processed Today</span>
102
+ <span class="text-xs bg-blue-900 bg-opacity-20 text-blue-300 px-2 py-1 rounded-full">+12%</span>
103
+ </div>
104
+ <div class="text-3xl font-bold text-blue-400">247</div>
105
+ </div>
106
+
107
+ <div class="bg-purple-900 bg-opacity-10 p-4 rounded-lg border border-purple-900 border-opacity-20">
108
+ <div class="flex justify-between items-center mb-2">
109
+ <span class="text-sm font-medium text-purple-300">Priority Items</span>
110
+ <span class="text-xs bg-purple-900 bg-opacity-20 text-purple-300 px-2 py-1 rounded-full">3 new</span>
111
+ </div>
112
+ <div class="text-3xl font-bold text-purple-400">8</div>
113
+ </div>
114
+
115
+ <div class="bg-green-900 bg-opacity-10 p-4 rounded-lg border border-green-900 border-opacity-20">
116
+ <div class="flex justify-between items-center mb-2">
117
+ <span class="text-sm font-medium text-green-300">Job Related</span>
118
+ <span class="text-xs bg-green-900 bg-opacity-20 text-green-300 px-2 py-1 rounded-full">1 new</span>
119
+ </div>
120
+ <div class="text-3xl font-bold text-green-400">5</div>
121
+ </div>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Email Preview -->
126
+ <div class="lg:w-2/3">
127
+ <div class="flex items-center mb-6">
128
+ <div class="bg-purple-900 bg-opacity-30 p-3 rounded-full mr-4">
129
+ <i class="fas fa-star text-purple-400 text-xl"></i>
130
+ </div>
131
+ <h2 class="text-2xl font-semibold text-dark-100">Priority Communications</h2>
132
+ </div>
133
+
134
+ <div class="space-y-4">
135
+ <!-- Email Card 1 -->
136
+ <div class="email-card bg-dark-700 border border-dark-600 rounded-xl p-4 shadow-sm transition-all duration-300 cursor-pointer">
137
+ <div class="flex items-start">
138
+ <div class="bg-red-900 bg-opacity-30 p-2 rounded-full mr-4">
139
+ <i class="fas fa-exclamation text-red-400"></i>
140
+ </div>
141
+ <div class="flex-1">
142
+ <div class="flex justify-between items-start">
143
+ <h3 class="font-semibold text-dark-100">Job Opportunity at TechCorp</h3>
144
+ <span class="text-xs bg-blue-900 bg-opacity-20 text-blue-300 px-2 py-1 rounded-full">Job Search</span>
145
+ </div>
146
+ <p class="text-sm text-dark-300 mt-1">Interview invitation for Senior Developer position...</p>
147
+ <div class="flex items-center mt-3 text-xs text-dark-400">
148
+ <span class="mr-3"><i class="far fa-clock mr-1"></i> 2 hours ago</span>
149
+ <span><i class="fas fa-tag mr-1"></i> High Priority</span>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Email Card 2 -->
156
+ <div class="email-card bg-dark-700 border border-dark-600 rounded-xl p-4 shadow-sm transition-all duration-300 cursor-pointer">
157
+ <div class="flex items-start">
158
+ <div class="bg-yellow-900 bg-opacity-30 p-2 rounded-full mr-4">
159
+ <i class="fas fa-user-edit text-yellow-400"></i>
160
+ </div>
161
+ <div class="flex-1">
162
+ <div class="flex justify-between items-start">
163
+ <h3 class="font-semibold text-dark-100">Sarah Johnson - Project Update</h3>
164
+ <span class="text-xs bg-purple-900 bg-opacity-20 text-purple-300 px-2 py-1 rounded-full">Human Written</span>
165
+ </div>
166
+ <p class="text-sm text-dark-300 mt-1">Following up on our client presentation next week...</p>
167
+ <div class="flex items-center mt-3 text-xs text-dark-400">
168
+ <span class="mr-3"><i class="far fa-clock mr-1"></i> 5 hours ago</span>
169
+ <span><i class="fas fa-tag mr-1"></i> Action Required</span>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Email Card 3 -->
176
+ <div class="email-card bg-dark-700 border border-dark-600 rounded-xl p-4 shadow-sm transition-all duration-300 cursor-pointer">
177
+ <div class="flex items-start">
178
+ <div class="bg-green-900 bg-opacity-30 p-2 rounded-full mr-4">
179
+ <i class="fas fa-briefcase text-green-400"></i>
180
+ </div>
181
+ <div class="flex-1">
182
+ <div class="flex justify-between items-start">
183
+ <h3 class="font-semibold text-dark-100">Previous Client - New Inquiry</h3>
184
+ <span class="text-xs bg-green-900 bg-opacity-20 text-green-300 px-2 py-1 rounded-full">Past Work</span>
185
+ </div>
186
+ <p class="text-sm text-dark-300 mt-1">They're interested in another collaboration for...</p>
187
+ <div class="flex items-center mt-3 text-xs text-dark-400">
188
+ <span class="mr-3"><i class="far fa-clock mr-1"></i> 1 day ago</span>
189
+ <span><i class="fas fa-tag mr-1"></i> Follow Up</span>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <button class="mt-6 w-full py-3 bg-gradient-to-r from-blue-500 to-purple-600 text-white rounded-lg font-medium hover:shadow-lg transition-all">
197
+ View All Priority Items
198
+ </button>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </div>
203
+
204
+ <!-- Features Section -->
205
+ <div class="grid md:grid-cols-3 gap-8 mb-16">
206
+ <!-- Feature 1 -->
207
+ <div class="bg-dark-800 p-6 rounded-xl shadow-sm border border-dark-700 hover:border-blue-800 transition-all">
208
+ <div class="bg-blue-900 bg-opacity-30 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
209
+ <i class="fas fa-brain text-blue-400 text-xl"></i>
210
+ </div>
211
+ <h3 class="text-xl font-semibold text-dark-100 mb-3">AI-Powered Prioritization</h3>
212
+ <p class="text-dark-300 mb-4">
213
+ Our advanced algorithms analyze your emails to surface what truly matters based on your personal and professional priorities.
214
+ </p>
215
+ <ul class="space-y-2 text-sm text-dark-300">
216
+ <li class="flex items-center">
217
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
218
+ Learns your preferences over time
219
+ </li>
220
+ <li class="flex items-center">
221
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
222
+ Identifies human-written emails
223
+ </li>
224
+ <li class="flex items-center">
225
+ <i class="fas fa-check-circle text-blue-400 mr-2"></i>
226
+ Flags job-related communications
227
+ </li>
228
+ </ul>
229
+ </div>
230
+
231
+ <!-- Feature 2 -->
232
+ <div class="bg-dark-800 p-6 rounded-xl shadow-sm border border-dark-700 hover:border-purple-800 transition-all">
233
+ <div class="bg-purple-900 bg-opacity-30 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
234
+ <i class="fas fa-tasks text-purple-400 text-xl"></i>
235
+ </div>
236
+ <h3 class="text-xl font-semibold text-dark-100 mb-3">Action Item Tracking</h3>
237
+ <p class="text-dark-300 mb-4">
238
+ Never miss an important follow-up. The assistant extracts action items and creates reminders automatically.
239
+ </p>
240
+ <ul class="space-y-2 text-sm text-dark-300">
241
+ <li class="flex items-center">
242
+ <i class="fas fa-check-circle text-purple-400 mr-2"></i>
243
+ Integrates with your calendar
244
+ </li>
245
+ <li class="flex items-center">
246
+ <i class="fas fa-check-circle text-purple-400 mr-2"></i>
247
+ Creates to-do items from emails
248
+ </li>
249
+ <li class="flex items-center">
250
+ <i class="fas fa-check-circle text-purple-400 mr-2"></i>
251
+ Follows up on unanswered emails
252
+ </li>
253
+ </ul>
254
+ </div>
255
+
256
+ <!-- Feature 3 -->
257
+ <div class="bg-dark-800 p-6 rounded-xl shadow-sm border border-dark-700 hover:border-green-800 transition-all">
258
+ <div class="bg-green-900 bg-opacity-30 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
259
+ <i class="fas fa-project-diagram text-green-400 text-xl"></i>
260
+ </div>
261
+ <h3 class="text-xl font-semibold text-dark-100 mb-3">Contextual Awareness</h3>
262
+ <p class="text-dark-300 mb-4">
263
+ Understands relationships between your contacts and projects to provide better organization and reminders.
264
+ </p>
265
+ <ul class="space-y-2 text-sm text-dark-300">
266
+ <li class="flex items-center">
267
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
268
+ Tracks previous collaborations
269
+ </li>
270
+ <li class="flex items-center">
271
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
272
+ Groups related communications
273
+ </li>
274
+ <li class="flex items-center">
275
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
276
+ Maintains contact histories
277
+ </li>
278
+ </ul>
279
+ </div>
280
+ </div>
281
+
282
+ <!-- Integration Section -->
283
+ <div class="bg-dark-800 rounded-xl shadow-sm p-8 mb-16">
284
+ <div class="text-center mb-8">
285
+ <h2 class="text-3xl font-bold text-dark-100 mb-2">Seamless Integrations</h2>
286
+ <p class="text-dark-300 max-w-2xl mx-auto">
287
+ Works with all your existing tools to provide a unified productivity experience
288
+ </p>
289
+ </div>
290
+
291
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
292
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
293
+ <div class="bg-blue-900 bg-opacity-30 p-4 rounded-full mb-3">
294
+ <i class="fab fa-google text-blue-400 text-2xl"></i>
295
+ </div>
296
+ <span class="font-medium text-dark-200">Gmail</span>
297
+ </div>
298
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
299
+ <div class="bg-purple-900 bg-opacity-30 p-4 rounded-full mb-3">
300
+ <i class="fas fa-calendar-alt text-purple-400 text-2xl"></i>
301
+ </div>
302
+ <span class="font-medium text-dark-200">Google Calendar</span>
303
+ </div>
304
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
305
+ <div class="bg-red-900 bg-opacity-30 p-4 rounded-full mb-3">
306
+ <i class="fab fa-microsoft text-red-400 text-2xl"></i>
307
+ </div>
308
+ <span class="font-medium text-dark-200">Outlook</span>
309
+ </div>
310
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
311
+ <div class="bg-green-900 bg-opacity-30 p-4 rounded-full mb-3">
312
+ <i class="fab fa-slack text-green-400 text-2xl"></i>
313
+ </div>
314
+ <span class="font-medium text-dark-200">Slack</span>
315
+ </div>
316
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
317
+ <div class="bg-yellow-900 bg-opacity-30 p-4 rounded-full mb-3">
318
+ <i class="fab fa-trello text-yellow-400 text-2xl"></i>
319
+ </div>
320
+ <span class="font-medium text-dark-200">Trello</span>
321
+ </div>
322
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
323
+ <div class="bg-indigo-900 bg-opacity-30 p-4 rounded-full mb-3">
324
+ <i class="fab fa-linkedin text-indigo-400 text-2xl"></i>
325
+ </div>
326
+ <span class="font-medium text-dark-200">LinkedIn</span>
327
+ </div>
328
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
329
+ <div class="bg-pink-900 bg-opacity-30 p-4 rounded-full mb-3">
330
+ <i class="fas fa-envelope text-pink-400 text-2xl"></i>
331
+ </div>
332
+ <span class="font-medium text-dark-200">IMAP</span>
333
+ </div>
334
+ <div class="flex flex-col items-center p-4 rounded-lg hover:bg-dark-700 transition-all">
335
+ <div class="bg-dark-700 p-4 rounded-full mb-3">
336
+ <i class="fas fa-plus text-dark-300 text-2xl"></i>
337
+ </div>
338
+ <span class="font-medium text-dark-200">More...</span>
339
+ </div>
340
+ </div>
341
+ </div>
342
+
343
+ <!-- CTA Section -->
344
+ <div class="bg-gradient-to-r from-blue-600 to-purple-700 rounded-xl p-8 text-center text-white">
345
+ <h2 class="text-3xl font-bold mb-4">Ready to transform your email workflow?</h2>
346
+ <p class="text-xl mb-6 max-w-2xl mx-auto opacity-90">
347
+ Let AI handle the busywork so you can focus on what really matters.
348
+ </p>
349
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
350
+ <button class="px-8 py-3 bg-white text-blue-700 rounded-lg font-semibold hover:bg-gray-100 transition-all">
351
+ Get Started Now
352
+ </button>
353
+ <button class="px-8 py-3 border-2 border-white text-white rounded-lg font-semibold hover:bg-white hover:bg-opacity-10 transition-all">
354
+ See Demo
355
+ </button>
356
+ </div>
357
+ </div>
358
+ </div>
359
+
360
+ <script>
361
+ // Interactive elements for the email cards
362
+ document.addEventListener('DOMContentLoaded', function() {
363
+ const emailCards = document.querySelectorAll('.email-card');
364
+
365
+ emailCards.forEach(card => {
366
+ card.addEventListener('click', function() {
367
+ // In a real app, this would open the email
368
+ alert('Opening email details view...');
369
+ });
370
+ });
371
+
372
+ // Animation for the pulse elements
373
+ const pulseElements = document.querySelectorAll('.pulse-animation');
374
+ pulseElements.forEach((el, index) => {
375
+ el.style.animationDelay = `${index * 0.5}s`;
376
+ });
377
+ });
378
+ </script>
379
+ <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=aegisceo/personal-assistant" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
380
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ can we invert this for a dark color scheme