madansa7 commited on
Commit
5d25008
·
verified ·
1 Parent(s): b8dafcf

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +203 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Mytools
3
- emoji: 📊
4
  colorFrom: red
5
- colorTo: red
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: mytools
3
+ emoji: 🐳
4
  colorFrom: red
5
+ colorTo: pink
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,203 @@
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>Nifty Tech Finds Apps</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;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
15
+ min-height: 100vh;
16
+ padding: 2rem;
17
+ }
18
+
19
+ .card {
20
+ transition: all 0.3s ease;
21
+ transform: translateY(0);
22
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
23
+ background: rgba(255,255,255,0.9);
24
+ backdrop-filter: blur(10px);
25
+ border-radius: 16px;
26
+ overflow: hidden;
27
+ border: 1px solid rgba(255,255,255,0.3);
28
+ }
29
+
30
+ .card:hover {
31
+ transform: translateY(-10px);
32
+ box-shadow: 0 15px 30px rgba(0,0,0,0.2);
33
+ }
34
+
35
+ .card-image {
36
+ height: 200px;
37
+ background-size: cover;
38
+ background-position: center;
39
+ transition: all 0.5s ease;
40
+ }
41
+
42
+ .card:hover .card-image {
43
+ transform: scale(1.05);
44
+ }
45
+
46
+ .gradient-text {
47
+ background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
48
+ -webkit-background-clip: text;
49
+ background-clip: text;
50
+ color: transparent;
51
+ }
52
+
53
+ .btn {
54
+ transition: all 0.3s ease;
55
+ background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
56
+ color: white;
57
+ border-radius: 50px;
58
+ padding: 0.75rem 1.5rem;
59
+ font-weight: 500;
60
+ box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
61
+ }
62
+
63
+ .btn:hover {
64
+ transform: translateY(-2px);
65
+ box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
66
+ }
67
+
68
+ .tag {
69
+ display: inline-block;
70
+ padding: 0.25rem 0.75rem;
71
+ border-radius: 50px;
72
+ font-size: 0.75rem;
73
+ font-weight: 600;
74
+ margin-right: 0.5rem;
75
+ margin-bottom: 0.5rem;
76
+ }
77
+
78
+ @keyframes fadeIn {
79
+ from { opacity: 0; transform: translateY(20px); }
80
+ to { opacity: 1; transform: translateY(0); }
81
+ }
82
+
83
+ .animate-fade-in {
84
+ animation: fadeIn 0.6s ease forwards;
85
+ }
86
+
87
+ .delay-1 {
88
+ animation-delay: 0.2s;
89
+ }
90
+
91
+ .delay-2 {
92
+ animation-delay: 0.4s;
93
+ }
94
+
95
+ .delay-3 {
96
+ animation-delay: 0.6s;
97
+ }
98
+ </style>
99
+ </head>
100
+ <body>
101
+ <div class="max-w-6xl mx-auto">
102
+ <div class="text-center mb-16">
103
+ <h1 class="text-4xl md:text-5xl font-bold mb-4 gradient-text">Nifty Tech Finds</h1>
104
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Discover innovative web apps designed to enhance your well-being, self-discovery, and creativity.</p>
105
+ </div>
106
+
107
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
108
+ <!-- Meditation Tool Card -->
109
+ <div class="card animate-fade-in delay-1">
110
+ <div class="card-image" style="background-image: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
111
+ <div class="p-6">
112
+ <div class="flex flex-wrap mb-4">
113
+ <span class="tag bg-blue-100 text-blue-800">Wellness</span>
114
+ <span class="tag bg-purple-100 text-purple-800">Mindfulness</span>
115
+ <span class="tag bg-green-100 text-green-800">Relaxation</span>
116
+ </div>
117
+ <h3 class="text-2xl font-bold mb-3 text-gray-800">Meditation Tool</h3>
118
+ <p class="text-gray-600 mb-6">A beautifully designed meditation companion that helps you find peace and focus through guided sessions, breathing exercises, and ambient sounds.</p>
119
+ <div class="flex justify-between items-center">
120
+ <a href="https://niftytechfinds.com/meditation-tool/" target="_blank" class="btn">
121
+ <i class="fas fa-external-link-alt mr-2"></i> Try It Now
122
+ </a>
123
+ <div class="flex space-x-2 text-yellow-400">
124
+ <i class="fas fa-star"></i>
125
+ <i class="fas fa-star"></i>
126
+ <i class="fas fa-star"></i>
127
+ <i class="fas fa-star"></i>
128
+ <i class="fas fa-star-half-alt"></i>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- Personality Trait Test Card -->
135
+ <div class="card animate-fade-in delay-2">
136
+ <div class="card-image" style="background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
137
+ <div class="p-6">
138
+ <div class="flex flex-wrap mb-4">
139
+ <span class="tag bg-red-100 text-red-800">Psychology</span>
140
+ <span class="tag bg-yellow-100 text-yellow-800">Self-Discovery</span>
141
+ <span class="tag bg-indigo-100 text-indigo-800">Assessment</span>
142
+ </div>
143
+ <h3 class="text-2xl font-bold mb-3 text-gray-800">DOPE Personality Test</h3>
144
+ <p class="text-gray-600 mb-6">Discover your personality type with this insightful assessment based on the DOPE bird model (Dove, Owl, Peacock, Eagle). Learn about your strengths and communication style.</p>
145
+ <div class="flex justify-between items-center">
146
+ <a href="https://niftytechfinds.com/personality-trait-dope-test/" target="_blank" class="btn">
147
+ <i class="fas fa-external-link-alt mr-2"></i> Take The Test
148
+ </a>
149
+ <div class="flex space-x-2 text-yellow-400">
150
+ <i class="fas fa-star"></i>
151
+ <i class="fas fa-star"></i>
152
+ <i class="fas fa-star"></i>
153
+ <i class="fas fa-star"></i>
154
+ <i class="far fa-star"></i>
155
+ </div>
156
+ </div>
157
+ </div>
158
+ </div>
159
+
160
+ <!-- Mandala Card -->
161
+ <div class="card animate-fade-in delay-3">
162
+ <div class="card-image" style="background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
163
+ <div class="p-6">
164
+ <div class="flex flex-wrap mb-4">
165
+ <span class="tag bg-pink-100 text-pink-800">Art</span>
166
+ <span class="tag bg-teal-100 text-teal-800">Creativity</span>
167
+ <span class="tag bg-orange-100 text-orange-800">Therapeutic</span>
168
+ </div>
169
+ <h3 class="text-2xl font-bold mb-3 text-gray-800">Mandala Creator</h3>
170
+ <p class="text-gray-600 mb-6">A digital mandala drawing tool that combines art therapy with creative expression. Create symmetrical designs that can help reduce stress and improve focus.</p>
171
+ <div class="flex justify-between items-center">
172
+ <a href="https://niftytechfinds.com/mandala/" target="_blank" class="btn">
173
+ <i class="fas fa-paint-brush mr-2"></i> Start Creating
174
+ </a>
175
+ <div class="flex space-x-2 text-yellow-400">
176
+ <i class="fas fa-star"></i>
177
+ <i class="fas fa-star"></i>
178
+ <i class="fas fa-star"></i>
179
+ <i class="fas fa-star"></i>
180
+ <i class="fas fa-star"></i>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <div class="mt-16 text-center">
188
+ <p class="text-gray-500 mb-4">Which app will you try first?</p>
189
+ <div class="flex justify-center space-x-4">
190
+ <a href="#" class="text-blue-500 hover:text-blue-700 transition-colors">
191
+ <i class="fab fa-twitter text-xl"></i>
192
+ </a>
193
+ <a href="#" class="text-pink-500 hover:text-pink-700 transition-colors">
194
+ <i class="fab fa-instagram text-xl"></i>
195
+ </a>
196
+ <a href="#" class="text-gray-700 hover:text-gray-900 transition-colors">
197
+ <i class="fab fa-github text-xl"></i>
198
+ </a>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ <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=madansa7/mytools" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
203
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ We are targeting to create a mobile responsive Html code without any header or footer but body and beautiful Css, inlude these app and tell about them in cards, https://niftytechfinds.com/meditation-tool/ https://niftytechfinds.com/personality-trait-dope-test/ https://niftytechfinds.com/mandala/