Hardy commited on
Commit
daf7dfb
·
verified ·
1 Parent(s): c1faf1e

Create a modern, responsive website navy in colour for a real self storage facility called "TAF storage" with a yellow line under TAF Storage. The homepage is to showcase images of shipping containers. Add the location of the facility. Add a contact section. Add "about us" section describing that having a self-storage unit provides security, flexibility, and space for belongings, which is beneficial during moves, renovations, or for a base for your small business. It offers a convenient and cost-effective way to store personal or business items

Browse files
Files changed (2) hide show
  1. README.md +9 -5
  2. index.html +333 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Undefined
3
- emoji: 🌖
4
- colorFrom: gray
5
- colorTo: blue
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: undefined
3
+ colorFrom: green
4
+ colorTo: yellow
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).
14
+
index.html CHANGED
@@ -1,19 +1,334 @@
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>TAF Storage - Secure Self Storage Solutions</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ navy: {
17
+ 500: '#001f3f',
18
+ 600: '#001a35',
19
+ 700: '#00152b',
20
+ }
21
+ }
22
+ }
23
+ }
24
+ }
25
+ </script>
26
+ <style>
27
+ .hero-section {
28
+ background-image: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), url('http://static.photos/industry/1200x630/5');
29
+ background-size: cover;
30
+ background-position: center;
31
+ height: 80vh;
32
+ }
33
+ .storage-unit {
34
+ transition: all 0.3s ease;
35
+ }
36
+ .storage-unit:hover {
37
+ transform: translateY(-5px);
38
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
39
+ }
40
+ </style>
41
+ </head>
42
+ <body class="bg-gray-50">
43
+ <!-- Navigation -->
44
+ <nav class="bg-navy-500 text-white shadow-lg">
45
+ <div class="container mx-auto px-6 py-3">
46
+ <div class="flex justify-between items-center">
47
+ <div class="flex items-center space-x-4">
48
+ <i data-feather="package" class="w-8 h-8 text-yellow-400"></i>
49
+ <span class="text-xl font-bold relative">
50
+ <span class="text-white">TAF</span>
51
+ <span class="text-yellow-400">Storage</span>
52
+ <span class="absolute bottom-0 left-0 w-full h-0.5 bg-yellow-400"></span>
53
+ </span>
54
+ </div>
55
+ <div class="hidden md:flex items-center space-x-8">
56
+ <a href="#" class="text-white hover:text-gray-300">Home</a>
57
+ <a href="#about" class="text-white hover:text-gray-300">About Us</a>
58
+ <a href="#location" class="text-white hover:text-gray-300">Location</a>
59
+ <a href="#contact" class="text-white hover:text-gray-300">Contact</a>
60
+ <button class="bg-white text-navy-500 px-4 py-2 rounded-md hover:bg-gray-100 transition">Book Now</button>
61
+ </div>
62
+ <button class="md:hidden focus:outline-none">
63
+ <i data-feather="menu" class="w-6 h-6 text-white"></i>
64
+ </button>
65
+ </div>
66
+ </div>
67
+ </nav>
68
+
69
+ <!-- Hero Section -->
70
+ <section class="hero-section flex items-center justify-center text-white">
71
+ <div class="text-center px-4">
72
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Secure Storage Solutions</h1>
73
+ <p class="text-xl md:text-2xl mb-8">Safe, flexible, and convenient storage for all your needs</p>
74
+ <button class="bg-white text-navy-500 px-6 py-3 rounded-md font-semibold hover:bg-gray-100 transition">Explore Our Units</button>
75
+ </div>
76
+ </section>
77
+ <!-- Container Showcase -->
78
+ <section class="py-12 bg-navy-700">
79
+ <div class="container mx-auto px-6">
80
+ <h2 class="text-3xl font-bold text-center text-white mb-12">Our Secure Container Units</h2>
81
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
82
+ <div>
83
+ <img src="http://static.photos/industry/640x360/20" alt="Shipping Container" class="rounded-lg shadow-xl w-full h-48 object-cover">
84
+ </div>
85
+ <div>
86
+ <img src="http://static.photos/industry/640x360/21" alt="Shipping Container Interior" class="rounded-lg shadow-xl w-full h-48 object-cover">
87
+ </div>
88
+ <div>
89
+ <img src="http://static.photos/industry/640x360/22" alt="Secure Containers" class="rounded-lg shadow-xl w-full h-48 object-cover">
90
+ </div>
91
+ <div>
92
+ <img src="http://static.photos/industry/640x360/23" alt="Container Storage" class="rounded-lg shadow-xl w-full h-48 object-cover">
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </section>
97
+
98
+ <!-- About Us Section -->
99
+ <section id="about" class="py-16 bg-white">
100
+ <div class="container mx-auto px-6">
101
+ <h2 class="text-3xl font-bold text-center text-navy-500 mb-12">Why Choose TAF Storage?</h2>
102
+ <div class="flex flex-col md:flex-row items-center gap-12">
103
+ <div class="md:w-1/2">
104
+ <img src="http://static.photos/industry/640x360/24" alt="Secure Storage Facility" class="rounded-lg shadow-lg w-full">
105
+ </div>
106
+ <div class="md:w-1/2">
107
+ <p class="text-gray-700 mb-6 text-lg">
108
+ TAF Storage provides premium shipping container storage solutions designed for security and convenience. Our weatherproof steel containers offer the ultimate protection for your belongings during life transitions.
109
+ </p>
110
+ <p class="text-gray-700 mb-6">
111
+ Whether you're moving, renovating your home, or need a secure base for your small business inventory, our storage solutions provide the perfect balance of security, flexibility and cost-effectiveness.
112
+ </p>
113
+ <div class="space-y-4">
114
+ <div class="flex items-start">
115
+ <i data-feather="lock" class="text-navy-500 mr-3 mt-1"></i>
116
+ <div>
117
+ <h3 class="font-semibold text-gray-800">Security</h3>
118
+ <p class="text-gray-600">24/7 surveillance and secure access for your peace of mind.</p>
119
+ </div>
120
+ </div>
121
+ <div class="flex items-start">
122
+ <i data-feather="clock" class="text-navy-500 mr-3 mt-1"></i>
123
+ <div>
124
+ <h3 class="font-semibold text-gray-800">Flexibility</h3>
125
+ <p class="text-gray-600">Choose the size you need and change as your requirements evolve.</p>
126
+ </div>
127
+ </div>
128
+ <div class="flex items-start">
129
+ <i data-feather="dollar-sign" class="text-navy-500 mr-3 mt-1"></i>
130
+ <div>
131
+ <h3 class="font-semibold text-gray-800">Cost-Effective</h3>
132
+ <p class="text-gray-600">Affordable solutions without long-term commitments.</p>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Storage Units Showcase -->
142
+ <section class="py-16 bg-gray-100">
143
+ <div class="container mx-auto px-6">
144
+ <h2 class="text-3xl font-bold text-center text-navy-500 mb-12">Our Storage Solutions</h2>
145
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
146
+ <!-- Unit 1 -->
147
+ <div class="storage-unit bg-white rounded-lg overflow-hidden shadow-lg">
148
+ <img src="http://static.photos/industry/640x360/1" alt="Small Storage Unit" class="w-full h-48 object-cover">
149
+ <div class="p-6">
150
+ <h3 class="text-xl font-semibold text-navy-500 mb-2">Small Unit</h3>
151
+ <p class="text-gray-600 mb-4">Perfect for boxes, small furniture, or seasonal items.</p>
152
+ <div class="flex justify-between items-center">
153
+ <span class="text-navy-500 font-bold">$49/month</span>
154
+ <button class="bg-navy-500 text-white px-4 py-2 rounded hover:bg-navy-600 transition">Book Now</button>
155
+ </div>
156
+ </div>
157
+ </div>
158
+ <!-- Unit 2 -->
159
+ <div class="storage-unit bg-white rounded-lg overflow-hidden shadow-lg">
160
+ <img src="http://static.photos/industry/640x360/2" alt="Medium Storage Unit" class="w-full h-48 object-cover">
161
+ <div class="p-6">
162
+ <h3 class="text-xl font-semibold text-navy-500 mb-2">Medium Unit</h3>
163
+ <p class="text-gray-600 mb-4">Ideal for furniture sets, business inventory, or during moves.</p>
164
+ <div class="flex justify-between items-center">
165
+ <span class="text-navy-500 font-bold">$89/month</span>
166
+ <button class="bg-navy-500 text-white px-4 py-2 rounded hover:bg-navy-600 transition">Book Now</button>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ <!-- Unit 3 -->
171
+ <div class="storage-unit bg-white rounded-lg overflow-hidden shadow-lg">
172
+ <img src="http://static.photos/industry/640x360/3" alt="Large Storage Unit" class="w-full h-48 object-cover">
173
+ <div class="p-6">
174
+ <h3 class="text-xl font-semibold text-navy-500 mb-2">Large Unit</h3>
175
+ <p class="text-gray-600 mb-4">Great for entire household moves or substantial business storage.</p>
176
+ <div class="flex justify-between items-center">
177
+ <span class="text-navy-500 font-bold">$129/month</span>
178
+ <button class="bg-navy-500 text-white px-4 py-2 rounded hover:bg-navy-600 transition">Book Now</button>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </section>
185
+ <!-- Location Section -->
186
+ <section id="location" class="py-16 bg-gray-100">
187
+ <div class="container mx-auto px-6">
188
+ <h2 class="text-3xl font-bold text-center text-navy-500 mb-12">Visit Our Facility</h2>
189
+ <div class="flex flex-col md:flex-row items-center gap-12">
190
+ <div class="md:w-1/2">
191
+ <div class="bg-gray-100 p-6 rounded-lg shadow-md">
192
+ <h3 class="text-xl font-semibold text-navy-500 mb-4">Visit Us</h3>
193
+ <div class="space-y-4">
194
+ <div class="flex items-start">
195
+ <i data-feather="map-pin" class="text-yellow-400 mr-3 mt-1"></i>
196
+ <div>
197
+ <p class="text-gray-800 font-medium">123 Industrial Way</p>
198
+ <p class="text-gray-700">Storage City, SC 12345</p>
199
+ <p class="text-gray-600 mt-2">Conveniently located near Highway 101</p>
200
+ </div>
201
+ </div>
202
+ <div class="flex items-start">
203
+ <i data-feather="clock" class="text-navy-500 mr-3 mt-1"></i>
204
+ <div>
205
+ <p class="text-gray-700">Access Hours:</p>
206
+ <p class="text-gray-700">Monday - Sunday: 6:00 AM - 10:00 PM</p>
207
+ </div>
208
+ </div>
209
+ <div class="flex items-start">
210
+ <i data-feather="phone" class="text-navy-500 mr-3 mt-1"></i>
211
+ <div>
212
+ <p class="text-gray-700">(555) 123-4567</p>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ <div class="md:w-1/2 h-96">
219
+ <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.215662606767!2d-73.9878446845938!3d40.75798587932694!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c25855c6480299%3A0x55194ec5a1ae072e!2sTimes%20Square!5e0!3m2!1sen!2sus!4v1623867894566!5m2!1sen!2sus"
220
+ class="w-full h-full rounded-lg shadow-xl"
221
+ style="border:0;"
222
+ allowfullscreen=""
223
+ loading="lazy"
224
+ title="TAF Storage Location"></iframe>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </section>
229
+ <!-- Contact Section -->
230
+ <section id="contact" class="py-16 bg-navy-500 text-white">
231
+ <div class="container mx-auto px-6">
232
+ <h2 class="text-3xl font-bold text-center mb-12">Get In Touch</h2>
233
+ <div class="flex flex-col lg:flex-row gap-12">
234
+ <div class="lg:w-1/2">
235
+ <div class="bg-navy-600 p-8 rounded-lg shadow-lg">
236
+ <h3 class="text-xl font-semibold mb-6">Our Contact Info</h3>
237
+ <div class="space-y-4">
238
+ <div class="flex items-start">
239
+ <i data-feather="map-pin" class="text-yellow-400 mr-4 mt-1"></i>
240
+ <div>
241
+ <p>123 Industrial Way</p>
242
+ <p>Storage City, SC 12345</p>
243
+ </div>
244
+ </div>
245
+ <div class="flex items-center">
246
+ <i data-feather="phone" class="text-yellow-400 mr-4"></i>
247
+ <p>(555) 987-6543</p>
248
+ </div>
249
+ <div class="flex items-center">
250
+ <i data-feather="mail" class="text-yellow-400 mr-4"></i>
251
+ <p>info@tafstorage.com</p>
252
+ </div>
253
+ <div class="flex items-center">
254
+ <i data-feather="clock" class="text-yellow-400 mr-4"></i>
255
+ <p>Open 7 days a week, 6AM-10PM</p>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </div>
260
+ <div class="lg:w-1/2">
261
+ <form class="bg-navy-600 p-8 rounded-lg shadow-lg">
262
+ <div>
263
+ <label for="name" class="block mb-2">Full Name</label>
264
+ <input type="text" id="name" class="w-full px-4 py-2 rounded text-navy-500">
265
+ </div>
266
+ <div>
267
+ <label for="email" class="block mb-2">Email Address</label>
268
+ <input type="email" id="email" class="w-full px-4 py-2 rounded text-navy-500">
269
+ </div>
270
+ <div class="md:col-span-2">
271
+ <label for="subject" class="block mb-2">Subject</label>
272
+ <input type="text" id="subject" class="w-full px-4 py-2 rounded text-navy-500">
273
+ </div>
274
+ <div class="md:col-span-2">
275
+ <label for="message" class="block mb-2">Message</label>
276
+ <textarea id="message" rows="4" class="w-full px-4 py-2 rounded text-navy-500"></textarea>
277
+ </div>
278
+ <div class="md:col-span-2 text-center">
279
+ <button type="submit" class="bg-white text-navy-500 px-6 py-3 rounded-md font-semibold hover:bg-gray-100 transition">Send Message</button>
280
+ </div>
281
+ </form>
282
+ </div>
283
+ </div>
284
+ </section>
285
+ <!-- Footer -->
286
+ <footer class="bg-navy-700 text-white py-8">
287
+ <div class="container mx-auto px-6">
288
+ <div class="flex flex-col md:flex-row justify-between items-center">
289
+ <div class="mb-6 md:mb-0">
290
+ <div class="flex items-center space-x-2">
291
+ <i data-feather="package" class="w-6 h-6"></i>
292
+ <span class="text-lg font-bold">TAF Storage</span>
293
+ </div>
294
+ <p class="text-gray-300 mt-2">Secure storage solutions since 2010</p>
295
+ </div>
296
+ <div class="flex space-x-6">
297
+ <a href="#" class="text-gray-300 hover:text-yellow-400 transition">
298
+ <i data-feather="facebook" class="w-5 h-5"></i>
299
+ </a>
300
+ <a href="#" class="text-gray-300 hover:text-yellow-400 transition">
301
+ <i data-feather="twitter" class="w-5 h-5"></i>
302
+ </a>
303
+ <a href="#" class="text-gray-300 hover:text-yellow-400 transition">
304
+ <i data-feather="instagram" class="w-5 h-5"></i>
305
+ </a>
306
+ <a href="#" class="text-gray-300 hover:text-yellow-400 transition">
307
+ <i data-feather="youtube" class="w-5 h-5"></i>
308
+ </a>
309
+ </div>
310
+ </div>
311
+ <div class="border-t border-navy-500 mt-8 pt-8 flex flex-col md:flex-row justify-between">
312
+ <div class="text-gray-300 mb-4 md:mb-0">
313
+ <p>© 2023 TAF Storage. All rights reserved.</p>
314
+ </div>
315
+ <div class="flex flex-wrap gap-4">
316
+ <a href="#" class="text-gray-300 hover:text-white transition">Privacy Policy</a>
317
+ <a href="#" class="text-gray-300 hover:text-white transition">Terms of Service</a>
318
+ <a href="#" class="text-gray-300 hover:text-white transition">FAQ</a>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </footer>
323
+
324
+ <script>
325
+ feather.replace();
326
+
327
+ // Mobile menu toggle functionality would go here
328
+ document.addEventListener('DOMContentLoaded', function() {
329
+ const mobileMenuButton = document.querySelector('.md\\:hidden');
330
+ // Add click event for mobile menu toggle
331
+ });
332
+ </script>
333
+ </body>
334
  </html>