Puretarantino commited on
Commit
efd5db4
·
verified ·
1 Parent(s): 5bacc31

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +328 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Cam By Mt95
3
- emoji: 📊
4
- colorFrom: gray
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: cam-by-mt95
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: blue
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,328 @@
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>MeowMats GPS | Pet Care Dashboard</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #fdf2f5;
15
+ }
16
+
17
+ .hot-pink-bg {
18
+ background-color: #ff69b4;
19
+ }
20
+
21
+ .hot-pink-text {
22
+ color: #ff69b4;
23
+ }
24
+
25
+ .hot-pink-border {
26
+ border-color: #ff69b4;
27
+ }
28
+
29
+ .paw-print {
30
+ position: absolute;
31
+ opacity: 0.1;
32
+ z-index: 0;
33
+ }
34
+
35
+ .map-container {
36
+ height: 300px;
37
+ background-color: #e2e8f0;
38
+ border-radius: 12px;
39
+ position: relative;
40
+ overflow: hidden;
41
+ }
42
+
43
+ .pet-avatar {
44
+ width: 80px;
45
+ height: 80px;
46
+ border: 3px solid #ff69b4;
47
+ }
48
+
49
+ .stats-card {
50
+ transition: all 0.3s ease;
51
+ }
52
+
53
+ .stats-card:hover {
54
+ transform: translateY(-5px);
55
+ }
56
+
57
+ .activity-dot {
58
+ width: 10px;
59
+ height: 10px;
60
+ border-radius: 50%;
61
+ }
62
+
63
+ @keyframes float {
64
+ 0% { transform: translateY(0px); }
65
+ 50% { transform: translateY(-10px); }
66
+ 100% { transform: translateY(0px); }
67
+ }
68
+
69
+ .floating-cat {
70
+ animation: float 3s ease-in-out infinite;
71
+ }
72
+ </style>
73
+ </head>
74
+ <body class="min-h-screen">
75
+ <!-- Paw prints background decoration -->
76
+ <div class="paw-print" style="top: 10%; left: 5%;">
77
+ <i class="fas fa-paw text-4xl hot-pink-text"></i>
78
+ </div>
79
+ <div class="paw-print" style="top: 30%; right: 8%;">
80
+ <i class="fas fa-paw text-5xl hot-pink-text"></i>
81
+ </div>
82
+ <div class="paw-print" style="bottom: 15%; left: 10%;">
83
+ <i class="fas fa-paw text-3xl hot-pink-text"></i>
84
+ </div>
85
+
86
+ <div class="container mx-auto px-4 py-8 relative z-10">
87
+ <!-- Header -->
88
+ <header class="flex justify-between items-center mb-8">
89
+ <div class="flex items-center">
90
+ <i class="fas fa-cat text-3xl hot-pink-text mr-3"></i>
91
+ <h1 class="text-3xl font-bold">
92
+ <span class="hot-pink-text">Meow</span>Mats <span class="text-gray-600">GPS</span>
93
+ </h1>
94
+ </div>
95
+ <div class="flex items-center space-x-4">
96
+ <button class="bg-white rounded-full p-2 shadow-md hover:bg-gray-100">
97
+ <i class="fas fa-bell hot-pink-text"></i>
98
+ </button>
99
+ <div class="w-10 h-10 rounded-full bg-pink-200 flex items-center justify-center">
100
+ <i class="fas fa-user hot-pink-text"></i>
101
+ </div>
102
+ </div>
103
+ </header>
104
+
105
+ <!-- Main Dashboard -->
106
+ <main>
107
+ <!-- Pet Profile Section -->
108
+ <section class="mb-8">
109
+ <div class="bg-white rounded-2xl shadow-lg p-6 flex flex-col md:flex-row items-center">
110
+ <div class="flex items-center mb-4 md:mb-0 md:mr-6">
111
+ <div class="pet-avatar rounded-full bg-pink-100 flex items-center justify-center mr-4">
112
+ <i class="fas fa-cat text-4xl hot-pink-text"></i>
113
+ </div>
114
+ <div>
115
+ <h2 class="text-xl font-bold">Whiskers</h2>
116
+ <p class="text-gray-500">Domestic Shorthair</p>
117
+ </div>
118
+ </div>
119
+
120
+ <div class="flex-1 grid grid-cols-2 md:grid-cols-4 gap-4">
121
+ <div class="stats-card bg-white p-4 rounded-lg border hot-pink-border border-l-4 shadow-sm">
122
+ <p class="text-gray-500 text-sm">Age</p>
123
+ <p class="font-bold">3 years</p>
124
+ </div>
125
+ <div class="stats-card bg-white p-4 rounded-lg border hot-pink-border border-l-4 shadow-sm">
126
+ <p class="text-gray-500 text-sm">Weight</p>
127
+ <p class="font-bold">4.2 kg</p>
128
+ </div>
129
+ <div class="stats-card bg-white p-4 rounded-lg border hot-pink-border border-l-4 shadow-sm">
130
+ <p class="text-gray-500 text-sm">Last Vet Visit</p>
131
+ <p class="font-bold">May 15</p>
132
+ </div>
133
+ <div class="stats-card bg-white p-4 rounded-lg border hot-pink-border border-l-4 shadow-sm">
134
+ <p class="text-gray-500 text-sm">Chip ID</p>
135
+ <p class="font-bold">#MEOW2468</p>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- GPS Tracking Section -->
142
+ <section class="mb-8">
143
+ <div class="bg-white rounded-2xl shadow-lg p-6">
144
+ <div class="flex justify-between items-center mb-4">
145
+ <h2 class="text-xl font-bold flex items-center">
146
+ <i class="fas fa-map-marked-alt hot-pink-text mr-2"></i>
147
+ Live GPS Tracking
148
+ </h2>
149
+ <div class="flex items-center space-x-2">
150
+ <span class="activity-dot bg-green-500"></span>
151
+ <span class="text-sm">Active now</span>
152
+ </div>
153
+ </div>
154
+
155
+ <div class="map-container relative">
156
+ <!-- This would be replaced with an actual map API in production -->
157
+ <div class="absolute inset-0 flex items-center justify-center">
158
+ <div class="text-center">
159
+ <div class="floating-cat mb-2">
160
+ <i class="fas fa-cat text-4xl hot-pink-text"></i>
161
+ </div>
162
+ <p class="text-gray-600">Whiskers is currently in the backyard</p>
163
+ <p class="text-sm text-gray-500">Last updated: 2 minutes ago</p>
164
+ </div>
165
+ </div>
166
+ </div>
167
+
168
+ <div class="mt-4 grid grid-cols-1 md:grid-cols-3 gap-4">
169
+ <div class="bg-pink-50 p-4 rounded-lg">
170
+ <div class="flex items-center">
171
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3">
172
+ <i class="fas fa-route hot-pink-text"></i>
173
+ </div>
174
+ <div>
175
+ <p class="text-gray-500 text-sm">Today's Distance</p>
176
+ <p class="font-bold">0.8 km</p>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ <div class="bg-pink-50 p-4 rounded-lg">
181
+ <div class="flex items-center">
182
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3">
183
+ <i class="fas fa-clock hot-pink-text"></i>
184
+ </div>
185
+ <div>
186
+ <p class="text-gray-500 text-sm">Outdoor Time</p>
187
+ <p class="font-bold">2h 15m</p>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ <div class="bg-pink-50 p-4 rounded-lg">
192
+ <div class="flex items-center">
193
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3">
194
+ <i class="fas fa-map-pin hot-pink-text"></i>
195
+ </div>
196
+ <div>
197
+ <p class="text-gray-500 text-sm">Favorite Spot</p>
198
+ <p class="font-bold">Garden Shed</p>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </section>
205
+
206
+ <!-- Olay Hot Pink Special Section -->
207
+ <section class="mb-8">
208
+ <div class="bg-gradient-to-r from-pink-400 to-pink-600 rounded-2xl shadow-lg p-6 text-white">
209
+ <div class="flex flex-col md:flex-row items-center">
210
+ <div class="md:w-1/2 mb-4 md:mb-0">
211
+ <h2 class="text-2xl font-bold mb-2">Olay Hot Pink Special</h2>
212
+ <p class="mb-4">Pamper your feline friend with our limited edition pink pet care collection. 20% off this week only!</p>
213
+ <button class="bg-white text-pink-600 font-bold py-2 px-6 rounded-full hover:bg-gray-100 transition">
214
+ Shop Now
215
+ </button>
216
+ </div>
217
+ <div class="md:w-1/2 flex justify-center">
218
+ <img src="https://placekitten.com/300/200" alt="Pink pet products" class="rounded-lg shadow-md border-4 border-white">
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </section>
223
+
224
+ <!-- Activity Feed -->
225
+ <section>
226
+ <h2 class="text-xl font-bold mb-4 flex items-center">
227
+ <i class="fas fa-history hot-pink-text mr-2"></i>
228
+ Recent Activity
229
+ </h2>
230
+
231
+ <div class="bg-white rounded-2xl shadow-lg p-6">
232
+ <div class="space-y-4">
233
+ <div class="flex items-start">
234
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3 mt-1">
235
+ <i class="fas fa-map-marker-alt hot-pink-text"></i>
236
+ </div>
237
+ <div>
238
+ <p class="font-medium">Location update</p>
239
+ <p class="text-sm text-gray-500">Whiskers entered the safe zone (backyard) at 3:42 PM</p>
240
+ <p class="text-xs text-gray-400">10 minutes ago</p>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="flex items-start">
245
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3 mt-1">
246
+ <i class="fas fa-bowl-food hot-pink-text"></i>
247
+ </div>
248
+ <div>
249
+ <p class="font-medium">Feeding time</p>
250
+ <p class="text-sm text-gray-500">Automatic feeder dispensed dinner portion</p>
251
+ <p class="text-xs text-gray-400">1 hour ago</p>
252
+ </div>
253
+ </div>
254
+
255
+ <div class="flex items-start">
256
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3 mt-1">
257
+ <i class="fas fa-door-open hot-pink-text"></i>
258
+ </div>
259
+ <div>
260
+ <p class="font-medium">Pet door activity</p>
261
+ <p class="text-sm text-gray-500">Whiskers went outside through the smart pet door</p>
262
+ <p class="text-xs text-gray-400">2 hours ago</p>
263
+ </div>
264
+ </div>
265
+ </div>
266
+
267
+ <button class="mt-4 text-pink-600 font-medium flex items-center">
268
+ View all activity
269
+ <i class="fas fa-chevron-right ml-1 text-sm"></i>
270
+ </button>
271
+ </div>
272
+ </section>
273
+ </main>
274
+
275
+ <!-- Bottom Navigation -->
276
+ <nav class="fixed bottom-0 left-0 right-0 bg-white shadow-lg rounded-t-2xl flex justify-around py-3 px-4">
277
+ <a href="#" class="flex flex-col items-center text-pink-600">
278
+ <i class="fas fa-home text-xl"></i>
279
+ <span class="text-xs mt-1">Home</span>
280
+ </a>
281
+ <a href="#" class="flex flex-col items-center text-gray-500">
282
+ <i class="fas fa-map text-xl"></i>
283
+ <span class="text-xs mt-1">Map</span>
284
+ </a>
285
+ <a href="#" class="flex flex-col items-center text-gray-500">
286
+ <i class="fas fa-heart text-xl"></i>
287
+ <span class="text-xs mt-1">Health</span>
288
+ </a>
289
+ <a href="#" class="flex flex-col items-center text-gray-500">
290
+ <i class="fas fa-cog text-xl"></i>
291
+ <span class="text-xs mt-1">Settings</span>
292
+ </a>
293
+ </nav>
294
+ </div>
295
+
296
+ <script>
297
+ // Simple animation for the floating cat icon
298
+ document.addEventListener('DOMContentLoaded', function() {
299
+ const floatingCat = document.querySelector('.floating-cat');
300
+
301
+ // Add click effect
302
+ floatingCat.addEventListener('click', function() {
303
+ this.style.transform = 'scale(1.2)';
304
+ setTimeout(() => {
305
+ this.style.transform = '';
306
+ }, 300);
307
+ });
308
+
309
+ // Simulate GPS updates
310
+ setInterval(() => {
311
+ const statusDot = document.querySelector('.activity-dot');
312
+ const statusText = document.querySelector('.activity-dot + span');
313
+
314
+ // Randomly change status for demo purposes
315
+ if (Math.random() > 0.8) {
316
+ statusDot.classList.remove('bg-green-500');
317
+ statusDot.classList.add('bg-yellow-500');
318
+ statusText.textContent = 'Moving';
319
+ } else {
320
+ statusDot.classList.remove('bg-yellow-500');
321
+ statusDot.classList.add('bg-green-500');
322
+ statusText.textContent = 'Active now';
323
+ }
324
+ }, 5000);
325
+ });
326
+ </script>
327
+ <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=Puretarantino/cam-by-mt95" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
328
+ </html>
prompts.txt ADDED
File without changes