LEGENDZEATZ commited on
Commit
3ba4663
·
verified ·
1 Parent(s): 1bfb669

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +233 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dsmb
3
- emoji: 🦀
4
- colorFrom: gray
5
  colorTo: pink
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: dsmb
3
+ emoji: 🐳
4
+ colorFrom: pink
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,233 @@
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>Down South Smash Burgers & Wings</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: #fff9f2;
15
+ }
16
+
17
+ .hero {
18
+ background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?ixlib=rb-4.0.3');
19
+ background-size: cover;
20
+ background-position: center;
21
+ }
22
+
23
+ .menu-card:hover {
24
+ transform: translateY(-5px);
25
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
26
+ }
27
+
28
+ .footer-links li:hover {
29
+ color: #f59e0b;
30
+ }
31
+
32
+ /* Custom animation for the logo */
33
+ @keyframes sizzle {
34
+ 0% { transform: scale(1); }
35
+ 50% { transform: scale(1.05); }
36
+ 100% { transform: scale(1); }
37
+ }
38
+
39
+ .logo-animate:hover {
40
+ animation: sizzle 0.5s ease-in-out;
41
+ }
42
+ </style>
43
+ </head>
44
+ <body>
45
+ <!-- Header/Navigation -->
46
+ <header class="bg-red-800 text-white sticky top-0 z-50 shadow-lg">
47
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
48
+ <div class="flex items-center space-x-2">
49
+ <div class="logo-animate">
50
+ <i class="fas fa-hamburger text-2xl text-amber-400"></i>
51
+ </div>
52
+ <h1 class="text-xl md:text-2xl font-bold">
53
+ <span class="text-amber-400">DOWN SOUTH</span> SMASH BURGERS
54
+ </h1>
55
+ </div>
56
+
57
+ <!-- Mobile Menu Button -->
58
+ <button id="mobile-menu-button" class="md:hidden text-white focus:outline-none">
59
+ <i class="fas fa-bars text-2xl"></i>
60
+ </button>
61
+
62
+ <!-- Desktop Navigation -->
63
+ <nav class="hidden md:flex space-x-6">
64
+ <a href="#home" class="hover:text-amber-400 transition">Home</a>
65
+ <a href="#menu" class="hover:text-amber-400 transition">Menu</a>
66
+ <a href="#about" class="hover:text-amber-400 transition">About</a>
67
+ <a href="#locations" class="hover:text-amber-400 transition">Locations</a>
68
+ <a href="#contact" class="hover:text-amber-400 transition">Contact</a>
69
+ </nav>
70
+ </div>
71
+
72
+ <!-- Mobile Menu -->
73
+ <div id="mobile-menu" class="hidden md:hidden bg-red-900 px-4 py-3">
74
+ <nav class="flex flex-col space-y-3">
75
+ <a href="#home" class="hover:text-amber-400 transition">Home</a>
76
+ <a href="#menu" class="hover:text-amber-400 transition">Menu</a>
77
+ <a href="#about" class="hover:text-amber-400 transition">About</a>
78
+ <a href="#locations" class="hover:text-amber-400 transition">Locations</a>
79
+ <a href="#contact" class="hover:text-amber-400 transition">Contact</a>
80
+ </nav>
81
+ </div>
82
+ </header>
83
+
84
+ <!-- Hero Section -->
85
+ <section id="home" class="hero flex items-center justify-center text-white h-screen">
86
+ <div class="container mx-auto px-4 text-center">
87
+ <h2 class="text-4xl md:text-6xl font-bold mb-6">
88
+ <span class="text-amber-400">DOWN SOUTH</span> SMASH BURGERS & WINGS
89
+ </h2>
90
+ <p class="text-xl md:text-2xl mb-8">Authentic southern flavors smashed between two buns!</p>
91
+ <div class="flex flex-col md:flex-row justify-center space-y-4 md:space-y-0 md:space-x-4">
92
+ <a href="#menu" class="bg-amber-500 hover:bg-amber-600 text-red-900 font-bold py-3 px-6 rounded-full transition duration-300 transform hover:scale-105">
93
+ <i class="fas fa-utensils mr-2"></i>View Menu
94
+ </a>
95
+ <a href="#locations" class="bg-transparent border-2 border-white hover:bg-red-800 text-white font-bold py-3 px-6 rounded-full transition duration-300 transform hover:scale-105">
96
+ <i class="fas fa-map-marker-alt mr-2"></i>Find Us
97
+ </a>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Specials Section -->
103
+ <section class="bg-amber-50 py-12">
104
+ <div class="container mx-auto px-4">
105
+ <h2 class="text-3xl font-bold text-center text-red-800 mb-8">Today's Specials</h2>
106
+
107
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
108
+ <!-- Special 1 -->
109
+ <div class="bg-white rounded-lg overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
110
+ <div class="h-48 bg-gray-300 relative">
111
+ <img src="https://images.unsplash.com/photo-1586190848861-99aa4a171e90?ixlib=rb-4.0.3" alt="Double Smash Burger" class="w-full h-full object-cover">
112
+ <div class="absolute top-4 right-4 bg-red-700 text-white px-3 py-1 rounded-full font-bold text-sm">
113
+ $12.99
114
+ </div>
115
+ </div>
116
+ <div class="p-6">
117
+ <h3 class="text-xl font-bold text-red-800 mb-2">Double Smash Deluxe</h3>
118
+ <p class="text-gray-600">Two smashed patties, American cheese, caramelized onions, pickles, and our signature Down South sauce.</p>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Special 2 -->
123
+ <div class="bg-white rounded-lg overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
124
+ <div class="h-48 bg-gray-300 relative">
125
+ <img src="https://images.unsplash.com/photo-1561758033-d89a9ad46330?ixlib=rb-4.0.3" alt="Hot Wings" class="w-full h-full object-cover">
126
+ <div class="absolute top-4 right-4 bg-red-800 text-white px-3 py-1 rounded-full font-bold text-sm">
127
+ $9.99
128
+ </div>
129
+ </div>
130
+ <div class="p-6">
131
+ <h3 class="text-xl font-bold text-red-800 mb-2">Hot Honey Wings</h3>
132
+ <p class="text-gray-600">Crispy wings tossed in our sweet & spicy hot honey sauce, served with ranch and celery.</p>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Special 3 -->
137
+ <div class="bg-white rounded-lg overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
138
+ <div class="h-48 bg-gray-300 relative">
139
+ <img src="https://images.unsplash.com/photo-1559849453-2cf0062c1720?ixlib=rb-4.0.3" alt="Burger Combo" class="w-full h-full object-cover">
140
+ <div class="absolute top-4 right-4 bg-red-900 text-white px-3 py-1 rounded-full font-bold text-sm">
141
+ $14.99
142
+ </div>
143
+ </div>
144
+ <div class="p-6">
145
+ <h3 class="text-xl font-bold text-red-800 mb-2">Smash Combo</h3>
146
+ <p class="text-gray-600">Single smash burger with fries and drink. Upgrade to a Double Smash for $2 more.</p>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </section>
152
+
153
+ <!-- Menu Section -->
154
+ <section id="menu" class="py-16 bg-white">
155
+ <div class="container mx-auto px-4">
156
+ <h2 class="text-3xl font-bold text-center text-red-800 mb-8">Our Menu</h2>
157
+
158
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
159
+ <!-- Burgers Column -->
160
+ <div>
161
+ <h3 class="text-2xl font-semibold text-amber-600 border-b-2 border-amber-600 pb-2 mb-6">
162
+ <i class="fas fa-hamburger mr-2"></i>Smash Burgers
163
+ </h3>
164
+
165
+ <!-- Menu Item -->
166
+ <div class="menu-card bg-amber-50 p-6 rounded-lg mb-6 transition duration-300">
167
+ <div class="flex justify-between items-start">
168
+ <div>
169
+ <h4 class="font-bold text-lg text-red-800">Classic Smash</h4>
170
+ <p class="text-gray-600">Smashed patty, American cheese, pickles, onions, Down South sauce</p>
171
+ </div>
172
+ <span class="font-bold text-red-800">$8.99</span>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Menu Item -->
177
+ <div class="menu-card bg-amber-50 p-6 rounded-lg mb-6 transition duration-300">
178
+ <div class="flex justify-between items-start">
179
+ <div>
180
+ <h4 class="font-bold text-lg text-red-800">Bacon Double Smash</h4>
181
+ <p class="text-gray-600">Two smashed patties, cheddar, crispy bacon, BBQ sauce, onion rings</p>
182
+ </div>
183
+ <span class="font-bold text-red-800">$12.99</span>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Menu Item -->
188
+ <div class="menu-card bg-amber-50 p-6 rounded-lg mb-6 transition duration-300">
189
+ <div class="flex justify-between items-start">
190
+ <div>
191
+ <h4 class="font-bold text-lg text-red-800">Hot & Spicy Smash</h4>
192
+ <p class="text-gray-600">Smashed patty, pepper jack, jalapeños, spicy mayo, crispy onions</p>
193
+ </div>
194
+ <span class="font-bold text-red-800">$10.99</span>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Menu Item -->
199
+ <div class="menu-card bg-amber-50 p-6 rounded-lg mb-6 transition duration-300">
200
+ <div class="flex justify-between items-start">
201
+ <div>
202
+ <h4 class="font-bold text-lg text-red-800">Southern Pimento Cheese</h4>
203
+ <p class="text-gray-600">Smashed patty, homemade pimento cheese, bacon jam, brioche bun</p>
204
+ </div>
205
+ <span class="font-bold text-red-800">$11.99</span>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <!-- Wings Column -->
211
+ <div>
212
+ <h3 class="text-2xl font-semibold text-amber-600 border-b-2 border-amber-600 pb-2 mb-6">
213
+ <i class="fas fa-drumstick-bite mr-2"></i>Wings
214
+ </h3>
215
+
216
+ <!-- Menu Item -->
217
+ <div class="menu-card bg-amber-50 p-6 rounded-lg mb-6 transition duration-300">
218
+ <div class="flex justify-between items-start">
219
+ <div>
220
+ <h4 class="font-bold text-lg text-red-800">Classic Buffalo (6pc)</h4>
221
+ <p class="text-gray-600">Hand-breaded wings tossed in our signature buffalo sauce</p>
222
+ </div>
223
+ <span class="font-bold text-red-800">$7.99</span>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Menu Item -->
228
+ <div class="menu-card bg-amber-50 p-6 rounded-lg mb-6 transition duration-300">
229
+ <div class="flex justify-between items-start">
230
+ <div>
231
+ <h4 class="font-bold text-lg text-red-800">Sweet Heat BBQ
232
+ <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=LEGENDZEATZ/dsmb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
233
+ </html>
prompts.txt ADDED
File without changes