steake commited on
Commit
166f1f4
·
verified ·
1 Parent(s): 6c31706

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +328 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Youandmepub
3
- emoji: 😻
4
- colorFrom: purple
5
- colorTo: yellow
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: youandmepub
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: green
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>You & Me Pub & Hostel | Kampot's Party Hub</title>
7
+ <meta name="description" content="Kampot's favorite bar-hostel combo. Drink, chill, crash, repeat with our $5 beds and legendary parties.">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link rel="preconnect" href="https://fonts.googleapis.com">
10
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11
+ <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
12
+ <script>
13
+ tailwind.config = {
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ 'sunset-yellow': '#FFD166',
18
+ 'sunset-orange': '#F4A261',
19
+ 'sunset-pink': '#EF476F',
20
+ 'sunset-purple': '#9C6ADE',
21
+ 'sunset-blue': '#118AB2',
22
+ 'electric-blue': '#06AED5',
23
+ 'amber': '#FF9F1C',
24
+ },
25
+ fontFamily: {
26
+ heading: ['Space Grotesk', 'sans-serif'],
27
+ body: ['Inter', 'sans-serif'],
28
+ },
29
+ backgroundImage: {
30
+ 'sunset-gradient': 'linear-gradient(to right, #FFD166, #F4A261, #EF476F, #9C6ADE, #118AB2)',
31
+ }
32
+ }
33
+ }
34
+ }
35
+ </script>
36
+ <style>
37
+ .logo-circle {
38
+ background: linear-gradient(135deg, #FFD166 0%, #F4A261 25%, #EF476F 50%, #9C6ADE 75%, #118AB2 100%);
39
+ box-shadow: 0 4px 20px rgba(0,0,0,0.15);
40
+ }
41
+ .sticky-nav {
42
+ backdrop-filter: blur(10px);
43
+ background-color: rgba(255,255,255,0.85);
44
+ }
45
+ .lazy {
46
+ opacity: 0;
47
+ transition: opacity 0.3s ease-in-out;
48
+ }
49
+ .lazy.loaded {
50
+ opacity: 1;
51
+ }
52
+ .punch-card-hole {
53
+ box-shadow: inset 0 0 0 3px white, inset 0 0 0 8px #EF476F;
54
+ }
55
+ </style>
56
+ <!-- Google Analytics -->
57
+ <script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
58
+ <script>
59
+ window.dataLayer = window.dataLayer || [];
60
+ function gtag(){dataLayer.push(arguments);}
61
+ gtag('js', new Date());
62
+ gtag('config', 'G-XXXXXXXXXX');
63
+ </script>
64
+ <!-- Schema.org markup -->
65
+ <script type="application/ld+json">
66
+ {
67
+ "@context": "https://schema.org",
68
+ "@type": "BarOrPub",
69
+ "name": "You & Me Pub & Hostel",
70
+ "image": "https://youandmekampot.com/logo.jpg",
71
+ "@id": "",
72
+ "url": "https://youandmekampot.com",
73
+ "telephone": "+855123456789",
74
+ "address": {
75
+ "@type": "PostalAddress",
76
+ "streetAddress": "Riverside Road",
77
+ "addressLocality": "Kampot",
78
+ "addressRegion": "Cambodia",
79
+ "postalCode": "07000",
80
+ "addressCountry": "KH"
81
+ },
82
+ "geo": {
83
+ "@type": "GeoCoordinates",
84
+ "latitude": 10.6108,
85
+ "longitude": 104.1815
86
+ },
87
+ "openingHoursSpecification": {
88
+ "@type": "OpeningHoursSpecification",
89
+ "dayOfWeek": [
90
+ "Monday",
91
+ "Tuesday",
92
+ "Wednesday",
93
+ "Thursday",
94
+ "Friday",
95
+ "Saturday",
96
+ "Sunday"
97
+ ],
98
+ "opens": "12:00",
99
+ "closes": "02:00"
100
+ },
101
+ "priceRange": "$",
102
+ "servesCuisine": "Bar Food"
103
+ }
104
+ </script>
105
+ </head>
106
+ <body class="font-body bg-white text-gray-800">
107
+ <!-- Header -->
108
+ <header class="sticky top-0 z-50 sticky-nav">
109
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
110
+ <a href="#" class="flex items-center">
111
+ <div class="logo-circle w-12 h-12 rounded-full flex items-center justify-center mr-3">
112
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
113
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
114
+ </svg>
115
+ </div>
116
+ <span class="font-heading font-bold text-xl text-sunset-blue">You & Me</span>
117
+ </a>
118
+
119
+ <nav class="hidden md:flex space-x-6 items-center">
120
+ <a href="#" class="font-medium hover:text-sunset-pink transition">Home</a>
121
+ <a href="#events" class="font-medium hover:text-sunset-pink transition">Events</a>
122
+ <a href="#book" class="font-medium hover:text-sunset-pink transition">Book a Bed</a>
123
+ <a href="#join" class="font-medium hover:text-sunset-pink transition">Join Telegram</a>
124
+ <a href="#free-shot" class="bg-amber text-white px-4 py-2 rounded-full font-bold hover:bg-opacity-90 transition">Tonight's Free Shot Code</a>
125
+ </nav>
126
+
127
+ <button class="md:hidden">
128
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
129
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
130
+ </svg>
131
+ </button>
132
+ </div>
133
+ </header>
134
+
135
+ <!-- Hero Section -->
136
+ <section class="relative overflow-hidden">
137
+ <div class="absolute inset-0 bg-sunset-gradient opacity-10"></div>
138
+ <div class="container mx-auto px-4 py-20 md:py-32 relative z-10">
139
+ <div class="max-w-3xl mx-auto text-center">
140
+ <h1 class="font-heading font-bold text-4xl md:text-6xl mb-6 text-sunset-blue">
141
+ Drink. Chill. Crash. Repeat.
142
+ </h1>
143
+ <p class="text-xl md:text-2xl mb-10 text-gray-700">
144
+ The only pub in Kampot where you can party, sleep, and wake up to do it again.
145
+ </p>
146
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
147
+ <a href="#join" class="bg-electric-blue text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-opacity-90 transition shadow-lg">
148
+ Join Telegram
149
+ </a>
150
+ <a href="#book" class="bg-white border-2 border-electric-blue text-electric-blue px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-50 transition shadow-lg">
151
+ Book a Bed
152
+ </a>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </section>
157
+
158
+ <!-- Tonight at the Pub -->
159
+ <section id="events" class="py-16 bg-gray-50">
160
+ <div class="container mx-auto px-4">
161
+ <h2 class="font-heading font-bold text-3xl md:text-4xl mb-12 text-center text-sunset-pink">
162
+ Tonight at the Pub
163
+ </h2>
164
+
165
+ <div class="max-w-2xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
166
+ <div class="p-6 md:p-8">
167
+ <div class="flex items-start mb-6">
168
+ <div class="bg-sunset-blue text-white rounded-full p-3 mr-4">
169
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
170
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
171
+ </svg>
172
+ </div>
173
+ <div>
174
+ <h3 class="font-heading font-bold text-xl text-sunset-blue mb-2">Open Mic Night</h3>
175
+ <p class="text-gray-600 mb-2">8PM - Late | Free entry</p>
176
+ <p class="text-gray-800">$1 beers from 5–7PM | Free shot if you say: "Sticky Mango"</p>
177
+ </div>
178
+ </div>
179
+
180
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4 mt-6">
181
+ <div class="bg-sunset-yellow bg-opacity-20 p-3 rounded-lg text-center">
182
+ <p class="font-bold text-sunset-yellow">Mon</p>
183
+ <p class="text-sm">Quiz Night</p>
184
+ </div>
185
+ <div class="bg-sunset-pink bg-opacity-20 p-3 rounded-lg text-center">
186
+ <p class="font-bold text-sunset-pink">Tue</p>
187
+ <p class="text-sm">Live Music</p>
188
+ </div>
189
+ <div class="bg-sunset-blue bg-opacity-20 p-3 rounded-lg text-center">
190
+ <p class="font-bold text-sunset-blue">Wed</p>
191
+ <p class="text-sm">Open Mic</p>
192
+ </div>
193
+ <div class="bg-sunset-purple bg-opacity-20 p-3 rounded-lg text-center">
194
+ <p class="font-bold text-sunset-purple">Thu</p>
195
+ <p class="text-sm">DJ Party</p>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="bg-gray-100 px-6 py-4 flex items-center justify-between">
201
+ <p class="text-sm text-gray-600">Updated daily via Telegram</p>
202
+ <a href="#join" class="text-sm font-bold text-sunset-blue hover:text-sunset-pink transition">Get Live Updates →</a>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </section>
207
+
208
+ <!-- Sleep with Us -->
209
+ <section id="book" class="py-16">
210
+ <div class="container mx-auto px-4">
211
+ <div class="flex flex-col md:flex-row items-center">
212
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
213
+ <h2 class="font-heading font-bold text-3xl md:text-4xl mb-6 text-sunset-blue">
214
+ Sleep with Us
215
+ </h2>
216
+ <p class="text-lg text-gray-700 mb-8">
217
+ After the party, crash in our comfortable dorms just steps away from your last drink.
218
+ Air-conditioned, secure lockers, and fast Wi-Fi included.
219
+ </p>
220
+
221
+ <div class="bg-gray-50 p-6 rounded-xl mb-8">
222
+ <div class="flex items-center mb-4">
223
+ <div class="bg-sunset-blue text-white rounded-full p-2 mr-4">
224
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
225
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01" />
226
+ </svg>
227
+ </div>
228
+ <h3 class="font-heading font-bold text-xl">10-Bed Mixed Dorm</h3>
229
+ </div>
230
+ <ul class="space-y-2 pl-12">
231
+ <li class="flex items-center">
232
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-sunset-blue mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
233
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
234
+ </svg>
235
+ <span>Air conditioning</span>
236
+ </li>
237
+ <li class="flex items-center">
238
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-sunset-blue mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
239
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
240
+ </svg>
241
+ <span>Personal lockers</span>
242
+ </li>
243
+ <li class="flex items-center">
244
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-sunset-blue mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
245
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
246
+ </svg>
247
+ <span>Free high-speed Wi-Fi</span>
248
+ </li>
249
+ <li class="flex items-center">
250
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-sunset-blue mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
251
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
252
+ </svg>
253
+ <span>24/7 reception</span>
254
+ </li>
255
+ </ul>
256
+ </div>
257
+
258
+ <div class="flex items-center justify-between bg-amber bg-opacity-10 p-4 rounded-lg border border-amber border-opacity-30">
259
+ <div>
260
+ <p class="font-bold text-amber">Only $5/night</p>
261
+ <p class="text-sm text-gray-600">Best value in Kampot</p>
262
+ </div>
263
+ <a href="https://m.me/youandmekampot" class="bg-amber text-white px-6 py-3 rounded-full font-bold hover:bg-opacity-90 transition">
264
+ Check Bed Availability
265
+ </a>
266
+ </div>
267
+ </div>
268
+
269
+ <div class="md:w-1/2">
270
+ <div class="grid grid-cols-2 gap-4">
271
+ <div class="rounded-xl overflow-hidden shadow-lg">
272
+ <img src="https://images.unsplash.com/photo-1566669437685-b9e6e8a5578f?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
273
+ alt="Dorm beds"
274
+ class="lazy w-full h-64 object-cover"
275
+ loading="lazy">
276
+ </div>
277
+ <div class="rounded-xl overflow-hidden shadow-lg">
278
+ <img src="https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
279
+ alt="Hostel common area"
280
+ class="lazy w-full h-64 object-cover"
281
+ loading="lazy">
282
+ </div>
283
+ <div class="rounded-xl overflow-hidden shadow-lg">
284
+ <img src="https://images.unsplash.com/photo-1596178065887-1198b6148b2f?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
285
+ alt="Hostel locker"
286
+ class="lazy w-full h-64 object-cover"
287
+ loading="lazy">
288
+ </div>
289
+ <div class="rounded-xl overflow-hidden shadow-lg">
290
+ <img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
291
+ alt="Hostel bathroom"
292
+ class="lazy w-full h-64 object-cover"
293
+ loading="lazy">
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </section>
300
+
301
+ <!-- Gallery -->
302
+ <section class="py-16 bg-gray-50">
303
+ <div class="container mx-auto px-4">
304
+ <h2 class="font-heading font-bold text-3xl md:text-4xl mb-12 text-center text-sunset-pink">
305
+ Life at You & Me
306
+ </h2>
307
+
308
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
309
+ <div class="rounded-xl overflow-hidden shadow-lg transform hover:scale-105 transition duration-300">
310
+ <img src="https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
311
+ alt="Bar scene"
312
+ class="lazy w-full h-64 object-cover"
313
+ loading="lazy">
314
+ </div>
315
+ <div class="rounded-xl overflow-hidden shadow-lg transform hover:scale-105 transition duration-300">
316
+ <img src="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
317
+ alt="Cocktails"
318
+ class="lazy w-full h-64 object-cover"
319
+ loading="lazy">
320
+ </div>
321
+ <div class="rounded-xl overflow-hidden shadow-lg transform hover:scale-105 transition duration-300">
322
+ <img src="https://images.unsplash.com/photo-1532635241-17ec820b5df8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80"
323
+ alt="Pub food"
324
+ class="lazy w-full h-64 object-cover"
325
+ loading="lazy">
326
+ </div>
327
+
328
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ You are a website creation AI. Build a stylish, mobile-first, single-page site for a bar-hostel in Kampot, Cambodia named **You & Me Pub & Hostel**. --- ## Brand Assets: - Logo: circular gradient logo with cocktail icon (filename: `photo_2025-05-08_12-07-29.jpg`) - Tagline: “Drink. Chill. Crash. Repeat.” --- ## Visual Style: - Color Palette: Sunset gradient (yellow → blue), white background, bold contrast CTAs (electric blue / amber) - Fonts: - Headings: bold rounded (like the logo font) - Body: clean sans-serif (e.g., Inter, Space Grotesk) - Style: Retro-travel meets minimalist tropical --- ## Page Structure: ### Header - Sticky nav: Home | Events | Book a Bed | Join Telegram - Centered logo linking to top - CTA button: “Tonight’s Free Shot Code” ### Hero Section - Headline: “Drink. Chill. Crash. Repeat.” - Subtext: “The only pub in Kampot where you can party, sleep, and wake up to do it again.” - Primary CTA: “Join Telegram” (linked to group) - Secondary CTA: “Book a Bed” ### Tonight at the Pub - Live event preview pulled from Telegram (or fallback to weekly event block) - Sample entry: “Open Mic at 8PM | $1 Beers 5–7PM | Free shot if you say: ‘Sticky Mango’” ### Sleep with Us - Dorms: 10-bed mixed, $5/night, AC, lockers, Wi-Fi - CTA: “Check Bed Availability” (links to Messenger or booking form) ### Gallery - 6–9 images of bar, guests, dorm, cocktails - Lazy loading for mobile speed ### Join the Party - QR code and Telegram group link - Text: “Insider deals. Secret events. Free drinks. Join the crew on Telegram.” ### Loyalty + Referral - Visual loyalty punch card (Loopy) - “Bring a friend, get a free shot” offer with QR code ### Find Us - Google Map embed - Directions: 3 mins from Old Market - Open: 12PM – Late - Contact: Phone, WhatsApp, FB Messenger ### Footer - Social links: Telegram, Facebook, Instagram - Text: “Designed by drunks. Refined by code.” - Copyright: © You & Me Pub 2024 --- ## Technical Requirements: - Mobile-first responsive layout - Optimized images (SVG logo, lazy load photos) - Schema.org markup (LocalBusiness) - Bit.ly or UTM links for CTA tracking - Google Analytics 4 enabled - Optional: Telegram bot integration for event sync --- ## Deployment Preference: Generate as either: - SvelteKit + Tailwind for performance - Framer or Dora AI for no-code - Notion/Super for MVP