zepoldani commited on
Commit
4ec3bdd
·
verified ·
1 Parent(s): b4aa34b

"user_settings": {
"timezone": "<e.g., America/New_York>",
"work_days": ["Mon","Tue","Wed","Thu","Fri"],
"work_hours": {"start": "09:00", "end": "17:00"},
"daily_reminder_time": "09:00",
"voice_check_ins": true
},
"tasks": [
{
"id": "T-001",
"title": "Draft Q3 update email",
"due": "2025-10-10 17:00",
"urgent": false,
"status": "open",
"notes": "",
"created_at": "2025-10-10 09:12",
"last_check_in": "2025-10-10 10:00",
"next_check_in": "2025-10-10 11:00",
"next_daily_reminder": "2025-10-11 09:00"
}
]
}

Files changed (3) hide show
  1. README.md +8 -5
  2. index.html +187 -18
  3. settings.html +132 -0
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Tasktamer Pro
3
- emoji: 🐢
4
- colorFrom: blue
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: TaskTamer Pro 🦁
3
+ colorFrom: yellow
4
+ colorTo: red
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,188 @@
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>TaskTamer Pro - Your Productivity Companion</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
13
+ body {
14
+ font-family: 'Inter', sans-serif;
15
+ overflow-x: hidden;
16
+ }
17
+ .task-card {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .task-card:hover {
21
+ transform: translateY(-3px);
22
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
23
+ }
24
+ #vanta-bg {
25
+ position: fixed;
26
+ top: 0;
27
+ left: 0;
28
+ width: 100%;
29
+ height: 100%;
30
+ z-index: -1;
31
+ opacity: 0.7;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50">
36
+ <div id="vanta-bg"></div>
37
+
38
+ <div class="container mx-auto px-4 py-8">
39
+ <!-- Header -->
40
+ <header class="flex justify-between items-center mb-12">
41
+ <div class="flex items-center">
42
+ <i data-feather="check-circle" class="text-indigo-600 w-8 h-8 mr-3"></i>
43
+ <h1 class="text-3xl font-bold text-gray-800">TaskTamer Pro</h1>
44
+ </div>
45
+ <div class="flex items-center space-x-4">
46
+ <button class="flex items-center space-x-2 bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg transition">
47
+ <i data-feather="plus" class="w-4 h-4"></i>
48
+ <span>New Task</span>
49
+ </button>
50
+ <button class="flex items-center space-x-2 bg-white hover:bg-gray-100 text-gray-700 px-4 py-2 rounded-lg border border-gray-200 transition">
51
+ <i data-feather="settings" class="w-4 h-4"></i>
52
+ <span>Settings</span>
53
+ </button>
54
+ </div>
55
+ </header>
56
+
57
+ <!-- Dashboard Overview -->
58
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-10">
59
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
60
+ <div class="flex justify-between items-center">
61
+ <div>
62
+ <p class="text-gray-500 text-sm">Open Tasks</p>
63
+ <h3 class="text-2xl font-bold text-gray-800 mt-1">12</h3>
64
+ </div>
65
+ <div class="bg-indigo-100 p-3 rounded-full">
66
+ <i data-feather="list" class="text-indigo-600 w-5 h-5"></i>
67
+ </div>
68
+ </div>
69
+ </div>
70
+
71
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
72
+ <div class="flex justify-between items-center">
73
+ <div>
74
+ <p class="text-gray-500 text-sm">Due Today</p>
75
+ <h3 class="text-2xl font-bold text-gray-800 mt-1">3</h3>
76
+ </div>
77
+ <div class="bg-red-100 p-3 rounded-full">
78
+ <i data-feather="alert-circle" class="text-red-600 w-5 h-5"></i>
79
+ </div>
80
+ </div>
81
+ </div>
82
+
83
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
84
+ <div class="flex justify-between items-center">
85
+ <div>
86
+ <p class="text-gray-500 text-sm">Completed</p>
87
+ <h3 class="text-2xl font-bold text-gray-800 mt-1">24</h3>
88
+ </div>
89
+ <div class="bg-green-100 p-3 rounded-full">
90
+ <i data-feather="check" class="text-green-600 w-5 h-5"></i>
91
+ </div>
92
+ </div>
93
+ </div>
94
+
95
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
96
+ <div class="flex justify-between items-center">
97
+ <div>
98
+ <p class="text-gray-500 text-sm">Next Check-in</p>
99
+ <h3 class="text-2xl font-bold text-gray-800 mt-1">11:00 AM</h3>
100
+ </div>
101
+ <div class="bg-blue-100 p-3 rounded-full">
102
+ <i data-feather="clock" class="text-blue-600 w-5 h-5"></i>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Task List -->
109
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
110
+ <div class="px-6 py-4 border-b border-gray-100 flex justify-between items-center">
111
+ <h2 class="text-xl font-semibold text-gray-800">Today's Tasks</h2>
112
+ <div class="flex space-x-3">
113
+ <button class="text-gray-500 hover:text-gray-700 transition">
114
+ <i data-feather="filter" class="w-5 h-5"></i>
115
+ </button>
116
+ <button class="text-gray-500 hover:text-gray-700 transition">
117
+ <i data-feather="refresh-cw" class="w-5 h-5"></i>
118
+ </button>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Task Item -->
123
+ <div class="task-card border-b border-gray-100 last:border-0 hover:bg-gray-50 transition">
124
+ <div class="px-6 py-4 flex items-start">
125
+ <div class="mr-4 pt-1">
126
+ <div class="w-5 h-5 border-2 border-gray-300 rounded-full hover:border-indigo-500 transition cursor-pointer"></div>
127
+ </div>
128
+ <div class="flex-1">
129
+ <div class="flex justify-between items-center">
130
+ <h3 class="font-medium text-gray-800">Draft Q3 update email</h3>
131
+ <span class="text-sm bg-blue-100 text-blue-800 px-2 py-1 rounded-full">Due Oct 10</span>
132
+ </div>
133
+ <p class="text-gray-500 text-sm mt-1">Prepare the quarterly update email for all team members</p>
134
+ <div class="flex items-center mt-3 text-sm text-gray-500">
135
+ <div class="flex items-center mr-4">
136
+ <i data-feather="calendar" class="w-4 h-4 mr-1"></i>
137
+ <span>Created: 2025-10-10</span>
138
+ </div>
139
+ <div class="flex items-center">
140
+ <i data-feather="clock" class="w-4 h-4 mr-1"></i>
141
+ <span>Next check-in: 11:00 AM</span>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ <div class="ml-4 flex space-x-2">
146
+ <button class="text-gray-400 hover:text-indigo-500 transition">
147
+ <i data-feather="edit" class="w-5 h-5"></i>
148
+ </button>
149
+ <button class="text-gray-400 hover:text-indigo-500 transition">
150
+ <i data-feather="more-vertical" class="w-5 h-5"></i>
151
+ </button>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Empty State -->
157
+ <div class="px-6 py-16 text-center" id="empty-state" style="display: none;">
158
+ <i data-feather="check-circle" class="w-12 h-12 text-gray-300 mx-auto"></i>
159
+ <h3 class="mt-4 text-lg font-medium text-gray-500">No tasks due today</h3>
160
+ <p class="mt-1 text-gray-400">Enjoy your day or add a new task to get started</p>
161
+ <button class="mt-4 bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg transition inline-flex items-center">
162
+ <i data-feather="plus" class="w-4 h-4 mr-2"></i>
163
+ <span>Add Task</span>
164
+ </button>
165
+ </div>
166
+ </div>
167
+ </div>
168
+
169
+ <script>
170
+ feather.replace();
171
+ VANTA.WAVES({
172
+ el: "#vanta-bg",
173
+ mouseControls: true,
174
+ touchControls: true,
175
+ gyroControls: false,
176
+ minHeight: 200.00,
177
+ minWidth: 200.00,
178
+ scale: 1.00,
179
+ scaleMobile: 1.00,
180
+ color: 0x5e72e4,
181
+ shininess: 0.00,
182
+ waveHeight: 20.00,
183
+ waveSpeed: 0.80,
184
+ zoom: 0.8
185
+ });
186
+ </script>
187
+ </body>
188
  </html>
settings.html ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Settings - TaskTamer Pro</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ }
15
+ .toggle-checkbox:checked {
16
+ right: 0;
17
+ border-color: #6366f1;
18
+ }
19
+ .toggle-checkbox:checked + .toggle-label {
20
+ background-color: #6366f1;
21
+ }
22
+ </style>
23
+ </head>
24
+ <body class="bg-gray-50">
25
+ <div class="container mx-auto px-4 py-8 max-w-4xl">
26
+ <!-- Header -->
27
+ <header class="flex justify-between items-center mb-8">
28
+ <div class="flex items-center">
29
+ <a href="index.html" class="mr-4 text-gray-500 hover:text-indigo-600 transition">
30
+ <i data-feather="arrow-left" class="w-5 h-5"></i>
31
+ </a>
32
+ <h1 class="text-2xl font-bold text-gray-800">Settings</h1>
33
+ </div>
34
+ </header>
35
+
36
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
37
+ <!-- Work Hours Section -->
38
+ <div class="px-6 py-5 border-b border-gray-100">
39
+ <h2 class="text-lg font-semibold text-gray-800 mb-4">Work Schedule</h2>
40
+
41
+ <div class="space-y-4">
42
+ <div>
43
+ <label class="block text-sm font-medium text-gray-700 mb-1">Work Days</label>
44
+ <div class="flex space-x-2">
45
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-white text-gray-700 text-sm">Mon</button>
46
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-white text-gray-700 text-sm">Tue</button>
47
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-white text-gray-700 text-sm">Wed</button>
48
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-white text-gray-700 text-sm">Thu</button>
49
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-indigo-600 text-white text-sm">Fri</button>
50
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-white text-gray-700 text-sm">Sat</button>
51
+ <button class="px-3 py-1 rounded-full border border-gray-300 bg-white text-gray-700 text-sm">Sun</button>
52
+ </div>
53
+ </div>
54
+
55
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
56
+ <div>
57
+ <label for="start-time" class="block text-sm font-medium text-gray-700 mb-1">Work Start</label>
58
+ <input type="time" id="start-time" value="09:00" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-500">
59
+ </div>
60
+ <div>
61
+ <label for="end-time" class="block text-sm font-medium text-gray-700 mb-1">Work End</label>
62
+ <input type="time" id="end-time" value="17:00" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-500">
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </div>
67
+
68
+ <!-- Reminders Section -->
69
+ <div class="px-6 py-5 border-b border-gray-100">
70
+ <h2 class="text-lg font-semibold text-gray-800 mb-4">Reminders</h2>
71
+
72
+ <div class="space-y-4">
73
+ <div class="flex items-center justify-between">
74
+ <div>
75
+ <label class="block text-sm font-medium text-gray-700 mb-1">Daily Reminder</label>
76
+ <p class="text-sm text-gray-500">Receive a daily overview of your tasks</p>
77
+ </div>
78
+ <div class="relative inline-block w-10 mr-2 align-middle select-none">
79
+ <input type="checkbox" name="daily-reminder" id="daily-reminder" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer" checked/>
80
+ <label for="daily-reminder" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label>
81
+ </div>
82
+ </div>
83
+
84
+ <div>
85
+ <label for="reminder-time" class="block text-sm font-medium text-gray-700 mb-1">Reminder Time</label>
86
+ <input type="time" id="reminder-time" value="09:00" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-500">
87
+ </div>
88
+
89
+ <div class="flex items-center justify-between">
90
+ <div>
91
+ <label class="block text-sm font-medium text-gray-700 mb-1">Voice Check-ins</label>
92
+ <p class="text-sm text-gray-500">Enable voice reminders for task check-ins</p>
93
+ </div>
94
+ <div class="relative inline-block w-10 mr-2 align-middle select-none">
95
+ <input type="checkbox" name="voice-checkins" id="voice-checkins" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer" checked/>
96
+ <label for="voice-checkins" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Timezone Section -->
103
+ <div class="px-6 py-5">
104
+ <h2 class="text-lg font-semibold text-gray-800 mb-4">Timezone</h2>
105
+
106
+ <div>
107
+ <label for="timezone" class="block text-sm font-medium text-gray-700 mb-1">Select Timezone</label>
108
+ <select id="timezone" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-500">
109
+ <option value="America/New_York" selected>America/New York</option>
110
+ <option value="America/Chicago">America/Chicago</option>
111
+ <option value="America/Denver">America/Denver</option>
112
+ <option value="America/Los_Angeles">America/Los Angeles</option>
113
+ <option value="Europe/London">Europe/London</option>
114
+ <option value="Europe/Paris">Europe/Paris</option>
115
+ <option value="Asia/Tokyo">Asia/Tokyo</option>
116
+ </select>
117
+ </div>
118
+ </div>
119
+ </div>
120
+
121
+ <div class="mt-6 flex justify-end">
122
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-2 rounded-lg transition">
123
+ Save Changes
124
+ </button>
125
+ </div>
126
+ </div>
127
+
128
+ <script>
129
+ feather.replace();
130
+ </script>
131
+ </body>
132
+ </html>