Blaqjomes commited on
Commit
0391159
·
verified ·
1 Parent(s): 16e35da

Develop an app for that taps WiFi password for easy logins - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +225 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Blaqjomes Wi Fi
3
- emoji: 🔥
4
- colorFrom: purple
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: blaqjomes-wi-fi
3
+ emoji: 🐳
4
+ colorFrom: green
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,226 @@
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>WiFi Tap | Easy WiFi Login</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <style>
13
+ .gradient-bg {
14
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
15
+ }
16
+ .card-hover:hover {
17
+ transform: translateY(-5px);
18
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
19
+ }
20
+ .transition-all {
21
+ transition: all 0.3s ease;
22
+ }
23
+ </style>
24
+ </head>
25
+ <body class="min-h-screen bg-gray-50">
26
+ <!-- Header -->
27
+ <header class="gradient-bg text-white">
28
+ <div class="container mx-auto px-4 py-12">
29
+ <nav class="flex justify-between items-center">
30
+ <div class="flex items-center space-x-2">
31
+ <i data-feather="wifi" class="w-8 h-8"></i>
32
+ <span class="text-2xl font-bold">WiFi Tap</span>
33
+ </div>
34
+ <div class="hidden md:flex space-x-8">
35
+ <a href="#" class="hover:text-gray-200 transition-all">Home</a>
36
+ <a href="#" class="hover:text-gray-200 transition-all">How It Works</a>
37
+ <a href="#" class="hover:text-gray-200 transition-all">Features</a>
38
+ <a href="#" class="hover:text-gray-200 transition-all">Contact</a>
39
+ </div>
40
+ <button class="md:hidden">
41
+ <i data-feather="menu" class="w-6 h-6"></i>
42
+ </button>
43
+ </nav>
44
+
45
+ <div class="mt-20 md:mt-32 text-center md:text-left md:flex items-center">
46
+ <div class="md:w-1/2" data-aos="fade-right">
47
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight">One Tap WiFi Login</h1>
48
+ <p class="mt-4 text-xl text-gray-200">Never type WiFi passwords again. Connect to networks with just one tap.</p>
49
+ <div class="mt-8 flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4 justify-center md:justify-start">
50
+ <button class="bg-white text-purple-700 px-6 py-3 rounded-full font-semibold hover:bg-gray-100 transition-all">
51
+ Download Now
52
+ </button>
53
+ <button class="border-2 border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-purple-700 transition-all">
54
+ Learn More
55
+ </button>
56
+ </div>
57
+ </div>
58
+ <div class="hidden md:block md:w-1/2" data-aos="fade-left">
59
+ <img src="http://static.photos/technology/640x360/1" alt="App Preview" class="rounded-xl shadow-2xl mx-auto">
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </header>
64
+
65
+ <!-- How It Works -->
66
+ <section class="py-20 bg-white">
67
+ <div class="container mx-auto px-4">
68
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-16" data-aos="fade-up">How WiFi Tap Works</h2>
69
+
70
+ <div class="grid md:grid-cols-3 gap-8">
71
+ <div class="bg-gray-50 p-8 rounded-xl card-hover transition-all" data-aos="fade-up" data-aos-delay="100">
72
+ <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
73
+ <i data-feather="wifi" class="w-8 h-8 text-purple-600"></i>
74
+ </div>
75
+ <h3 class="text-xl font-semibold mb-3 text-gray-800">1. Scan Networks</h3>
76
+ <p class="text-gray-600">WiFi Tap automatically scans for available networks around you.</p>
77
+ </div>
78
+
79
+ <div class="bg-gray-50 p-8 rounded-xl card-hover transition-all" data-aos="fade-up" data-aos-delay="200">
80
+ <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
81
+ <i data-feather="key" class="w-8 h-8 text-purple-600"></i>
82
+ </div>
83
+ <h3 class="text-xl font-semibold mb-3 text-gray-800">2. Tap to Connect</h3>
84
+ <p class="text-gray-600">Simply tap on a network you've connected to before to automatically log in.</p>
85
+ </div>
86
+
87
+ <div class="bg-gray-50 p-8 rounded-xl card-hover transition-all" data-aos="fade-up" data-aos-delay="300">
88
+ <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
89
+ <i data-feather="shield" class="w-8 h-8 text-purple-600"></i>
90
+ </div>
91
+ <h3 class="text-xl font-semibold mb-3 text-gray-800">3. Secure Storage</h3>
92
+ <p class="text-gray-600">Your passwords are securely encrypted and stored on your device only.</p>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </section>
97
+
98
+ <!-- Features -->
99
+ <section class="py-20 bg-gray-50">
100
+ <div class="container mx-auto px-4">
101
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-16" data-aos="fade-up">Key Features</h2>
102
+
103
+ <div class="flex flex-col md:flex-row items-center">
104
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10" data-aos="fade-right">
105
+ <img src="http://static.photos/technology/640x360/2" alt="Feature Preview" class="rounded-xl shadow-lg">
106
+ </div>
107
+ <div class="md:w-1/2" data-aos="fade-left">
108
+ <div class="space-y-8">
109
+ <div class="flex items-start">
110
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
111
+ <i data-feather="zap" class="w-5 h-5 text-purple-600"></i>
112
+ </div>
113
+ <div>
114
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Lightning Fast</h3>
115
+ <p class="text-gray-600">Connect to networks instantly without typing or searching for passwords.</p>
116
+ </div>
117
+ </div>
118
+
119
+ <div class="flex items-start">
120
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
121
+ <i data-feather="lock" class="w-5 h-5 text-purple-600"></i>
122
+ </div>
123
+ <div>
124
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Military-Grade Security</h3>
125
+ <p class="text-gray-600">All credentials are encrypted with AES-256 and never leave your device.</p>
126
+ </div>
127
+ </div>
128
+
129
+ <div class="flex items-start">
130
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
131
+ <i data-feather="share-2" class="w-5 h-5 text-purple-600"></i>
132
+ </div>
133
+ <div>
134
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Easy Sharing</h3>
135
+ <p class="text-gray-600">Securely share WiFi access with friends without revealing the password.</p>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ </section>
143
+
144
+ <!-- CTA -->
145
+ <section class="py-20 gradient-bg text-white">
146
+ <div class="container mx-auto px-4 text-center">
147
+ <h2 class="text-3xl font-bold mb-6" data-aos="fade-up">Ready to Simplify Your WiFi Experience?</h2>
148
+ <p class="text-xl mb-10 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">Download WiFi Tap today and say goodbye to typing WiFi passwords forever.</p>
149
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4 justify-center" data-aos="fade-up" data-aos-delay="200">
150
+ <button class="bg-white text-purple-700 px-8 py-4 rounded-full font-semibold hover:bg-gray-100 transition-all flex items-center justify-center">
151
+ <i data-feather="download" class="mr-2"></i>
152
+ Download for iOS
153
+ </button>
154
+ <button class="bg-white text-purple-700 px-8 py-4 rounded-full font-semibold hover:bg-gray-100 transition-all flex items-center justify-center">
155
+ <i data-feather="download" class="mr-2"></i>
156
+ Download for Android
157
+ </button>
158
+ </div>
159
+ </div>
160
+ </section>
161
+
162
+ <!-- Footer -->
163
+ <footer class="bg-gray-900 text-gray-400 py-12">
164
+ <div class="container mx-auto px-4">
165
+ <div class="grid md:grid-cols-4 gap-8">
166
+ <div>
167
+ <div class="flex items-center space-x-2 mb-4">
168
+ <i data-feather="wifi" class="w-6 h-6 text-purple-500"></i>
169
+ <span class="text-xl font-bold text-white">WiFi Tap</span>
170
+ </div>
171
+ <p class="mb-4">Making WiFi connections effortless since 2023.</p>
172
+ <div class="flex space-x-4">
173
+ <a href="#"><i data-feather="twitter" class="w-5 h-5 hover:text-white"></i></a>
174
+ <a href="#"><i data-feather="facebook" class="w-5 h-5 hover:text-white"></i></a>
175
+ <a href="#"><i data-feather="instagram" class="w-5 h-5 hover:text-white"></i></a>
176
+ <a href="#"><i data-feather="github" class="w-5 h-5 hover:text-white"></i></a>
177
+ </div>
178
+ </div>
179
+
180
+ <div>
181
+ <h3 class="text-white font-semibold mb-4">Product</h3>
182
+ <ul class="space-y-2">
183
+ <li><a href="#" class="hover:text-white">Features</a></li>
184
+ <li><a href="#" class="hover:text-white">Pricing</a></li>
185
+ <li><a href="#" class="hover:text-white">Download</a></li>
186
+ <li><a href="#" class="hover:text-white">Updates</a></li>
187
+ </ul>
188
+ </div>
189
+
190
+ <div>
191
+ <h3 class="text-white font-semibold mb-4">Company</h3>
192
+ <ul class="space-y-2">
193
+ <li><a href="#" class="hover:text-white">About</a></li>
194
+ <li><a href="#" class="hover:text-white">Careers</a></li>
195
+ <li><a href="#" class="hover:text-white">Privacy</a></li>
196
+ <li><a href="#" class="hover:text-white">Terms</a></li>
197
+ </ul>
198
+ </div>
199
+
200
+ <div>
201
+ <h3 class="text-white font-semibold mb-4">Support</h3>
202
+ <ul class="space-y-2">
203
+ <li><a href="#" class="hover:text-white">Help Center</a></li>
204
+ <li><a href="#" class="hover:text-white">Contact Us</a></li>
205
+ <li><a href="#" class="hover:text-white">FAQ</a></li>
206
+ <li><a href="#" class="hover:text-white">Community</a></li>
207
+ </ul>
208
+ </div>
209
+ </div>
210
+
211
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center">
212
+ <p>© 2023 WiFi Tap. All rights reserved.</p>
213
+ </div>
214
+ </div>
215
+ </footer>
216
+
217
+ <script>
218
+ AOS.init({
219
+ duration: 800,
220
+ easing: 'ease-in-out',
221
+ once: true
222
+ });
223
+ feather.replace();
224
+ </script>
225
+ </body>
226
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Develop an app for that taps WiFi password for easy logins