kritsanan commited on
Commit
8dca1a8
·
verified ·
1 Parent(s): c3c0fcf

Context: You are an expert AI coding assistant on Lovable.dev, building a full-stack web application called "ที่นี่วังสามหมอ - Tour Der Wang," a job-matching and local tourism platform for Wang Sam Mo, Thailand, targeting service, retail, and tourism sectors. The app uses Node.js 20, React with TypeScript, Tailwind CSS, and Supabase for authentication (email, Line, Facebook), PostgreSQL database, and file storage. It runs on port 5000, aligns with a ... configuration, and supports deployment with npm run build and npm run start. The design uses a pastel orange theme (#FFE5CC, #FFCC99) with Sarabun font, Thai text, and a minimalist, mobile-first UI incorporating local cultural elements (e.g., Phra Pathom Chedi icons). The homepage includes navigation to: Homepage, /ประวัติศาสตร์, /คอนเทนท์, /ร้านอาหาร-ห้องพัก-ธุรกิรและบริการในพื้นที่, /หางาน-หาพนักงาน, /สนใจติดต่อประชาสัมพันธ์-pricing-ค่าบริการ, /เกี่ยวกับเรา, /ลงชื่อเข้าใช้. Task: Develop the app with all specified pages and features (job-matching, local business directory, monetization) incrementally, ensuring compatibility with ... configuration. Test each feature for responsiveness and functionality. Maintain a Knowledge Base with a PRD. - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +321 -502
index.html CHANGED
@@ -1,609 +1,428 @@
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>Tourderwang 2.0 | AI-Powered Social Media Content Revolution</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
- <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
9
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
10
- <link rel="preconnect" href="https://fonts.googleapis.com">
11
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
- <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
13
  <script>
14
  tailwind.config = {
15
  theme: {
16
  extend: {
17
  colors: {
18
- primary: "#4F46E5",
19
- secondary: "#8B5CF6",
20
- accent: "#0EA5E9",
21
- dark: "#1E293B",
22
- highlight: "#06B6D4"
23
  },
24
  fontFamily: {
25
- orbitron: ['Orbitron', 'sans-serif'],
26
- poppins: ['Poppins', 'sans-serif']
27
- },
28
- animation: {
29
- 'float': 'float 6s ease-in-out infinite',
30
- 'pulse-slow': 'pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite'
31
- },
32
- keyframes: {
33
- float: {
34
- '0%, 100%': { transform: 'translateY(0)' },
35
- '50%': { transform: 'translateY(-20px)' },
36
- }
37
  }
38
  }
39
  }
40
  }
41
  </script>
42
  <style>
43
- :root {
44
- --gradient: linear-gradient(135deg, #4F46E5, #8B5CF6, #0EA5E9);
45
- }
46
  body {
47
- background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
48
- color: #f8fafc;
49
- overflow-x: hidden;
50
- scroll-behavior: smooth;
51
- }
52
- .glow {
53
- text-shadow: 0 0 10px rgba(79, 70, 229, 0.5), 0 0 20px rgba(79, 70, 229, 0.3);
54
- }
55
- .card {
56
- background: rgba(30, 41, 59, 0.7);
57
- backdrop-filter: blur(10px);
58
- border: 1px solid rgba(79, 70, 229, 0.3);
59
- border-radius: 16px;
60
- transition: all 0.3s ease;
61
  }
62
- .card:hover {
63
- transform: translateY(-10px);
64
- border-color: rgba(79, 70, 229, 0.6);
65
- box-shadow: 0 10px 30px -15px rgba(79, 70, 229, 0.5);
66
- }
67
- .cta-bg {
68
- background: radial-gradient(circle at center, rgba(79, 70, 229, 0.2) 0%, rgba(30, 41, 59, 0) 70%);
69
- }
70
- .neon-border {
71
  position: relative;
72
- z-index: 1;
73
  }
74
- .neon-border::before {
75
- content: '';
76
  position: absolute;
77
- top: -2px;
78
- left: -2px;
79
- right: -2px;
80
- bottom: -2px;
81
- background: var(--gradient);
82
- border-radius: 16px;
83
- z-index: -1;
84
  }
85
- .analytics-preview {
86
- perspective: 1000px;
87
  }
88
- .cube {
89
- width: 200px;
90
- height: 200px;
91
- position: relative;
92
- transform-style: preserve-3d;
93
- transform: rotateX(25deg) rotateY(-25deg);
94
- animation: rotate 15s infinite linear;
95
  }
96
- @keyframes rotate {
97
- 0% { transform: rotateX(25deg) rotateY(0deg); }
98
- 100% { transform: rotateX(25deg) rotateY(-360deg); }
99
  }
100
- .cube div {
101
- position: absolute;
102
- width: 200px;
103
- height: 200px;
104
- backdrop-filter: blur(5px);
105
- border: 1px solid rgba(139, 92, 246, 0.6);
106
- display: flex;
107
- align-items: center;
108
- justify-content: center;
109
- font-size: 1.5rem;
110
- font-weight: bold;
111
- color: white;
112
- }
113
- .front { transform: translateZ(100px); background: rgba(14, 165, 233, 0.3); }
114
- .back { transform: translateZ(-100px) rotateY(180deg); background: rgba(139, 92, 246, 0.3); }
115
- .right { transform: rotateY(90deg) translateZ(100px); background: rgba(79, 70, 229, 0.3); }
116
- .left { transform: rotateY(-90deg) translateZ(100px); background: rgba(6, 182, 212, 0.3); }
117
- .top { transform: rotateX(90deg) translateZ(100px); background: rgba(255, 255, 255, 0.1); }
118
- .bottom { transform: rotateX(-90deg) translateZ(100px); background: rgba(30, 41, 59, 0.4); }
119
-
120
- .feature-icon {
121
- font-size: 2.5rem;
122
- background: var(--gradient);
123
- -webkit-background-clip: text;
124
- -webkit-text-fill-color: transparent;
125
  }
126
  </style>
127
  </head>
128
- <body>
129
- <!-- Navigation -->
130
- <nav class="fixed w-full z-50 py-4 backdrop-blur-md bg-opacity-80 bg-gray-900 border-b border-indigo-900">
131
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
132
- <div class="flex justify-between items-center">
133
- <div class="flex items-center">
134
- <div class="flex-shrink-0 flex items-center">
135
- <div class="relative">
136
- <div class="absolute -inset-1.5 bg-indigo-600 rounded-full blur opacity-75"></div>
137
- <div class="text-white font-bold text-2xl relative px-4 py-2 rounded-full bg-gray-900">
138
- <span class="text-indigo-400">T</span>
139
- <span class="text-cyan-400">2.0</span>
140
- </div>
141
- </div>
142
  </div>
 
143
  </div>
144
 
145
- <div class="hidden md:flex space-x-10">
146
- <a href="#features" class="text-indigo-200 hover:text-white transition">Features</a>
147
- <a href="#analytics" class="text-indigo-200 hover:text-white transition">3D Analytics</a>
148
- <a href="#preview" class="text-indigo-200 hover:text-white transition">Preview</a>
149
- <a href="#tech" class="text-indigo-200 hover:text-white transition">Tech Stack</a>
150
- </div>
 
 
 
 
 
151
 
152
- <div>
153
- <button class="hidden md:inline-block bg-gradient-to-r from-indigo-600 to-cyan-500 text-white font-bold py-2 px-6 rounded-full transition-all hover:from-indigo-700 hover:to-cyan-600 hover:shadow-xl hover:shadow-indigo-500/30">
154
- Get Started
155
- </button>
156
- </div>
157
-
158
- <div class="md:hidden">
159
- <button id="mobile-menu-button" class="p-2 text-indigo-300">
160
- <i class="fas fa-bars text-2xl"></i>
161
- </button>
162
- </div>
163
  </div>
164
 
165
- <div id="mobile-menu" class="hidden md:hidden py-4 px-2 border-t border-indigo-900 mt-4">
166
- <div class="flex flex-col space-y-4">
167
- <a href="#features" class="text-indigo-200 hover:text-white transition">Features</a>
168
- <a href="#analytics" class="text-indigo-200 hover:text-white transition">3D Analytics</a>
169
- <a href="#preview" class="text-indigo-200 hover:text-white transition">Preview</a>
170
- <a href="#tech" class="text-indigo-200 hover:text-white transition">Tech Stack</a>
171
- <button class="bg-gradient-to-r from-indigo-600 to-cyan-500 text-white font-bold py-3 rounded-full">
172
- Get Started
173
- </button>
 
 
174
  </div>
175
- </div>
176
  </div>
177
- </nav>
178
 
179
- <!-- Hero Section -->
180
- <section class="pt-32 pb-20 md:pt-44 md:pb-32 relative overflow-hidden">
181
- <div class="absolute top-0 left-0 w-full h-full" id="hero-canvas"></div>
182
-
183
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
184
- <div class="flex flex-col md:flex-row items-center">
185
- <div class="md:w-1/2 mb-16 md:mb-0">
186
- <h1 class="text-4xl md:text-6xl font-bold mb-6 font-orbitron glow">
187
- <span class="text-transparent bg-clip-text bg-gradient-to-r from-cyan-400 to-indigo-400">Tourderwang</span>
188
- <span class="block">2.0 is Here</span>
189
- </h1>
190
- <p class="text-xl text-cyan-100 mb-8 font-poppins">
191
- Revolutionize your social media content with AI-driven creation, immersive 3D analytics, and optimization tools crafted for the next generation of digital engagement.
192
- </p>
193
- <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
194
- <button class="bg-gradient-to-r from-indigo-600 to-cyan-500 text-white font-bold py-4 px-8 rounded-full text-lg transition-all hover:from-indigo-700 hover:to-cyan-600 hover:shadow-xl hover:shadow-indigo-500/30">
195
- Start Free Trial
196
- </button>
197
- <button class="bg-gray-800 text-indigo-100 font-bold py-4 px-8 rounded-full border border-indigo-900 text-lg hover:bg-gray-700 hover:border-indigo-700 transition">
198
- <i class="fas fa-play-circle mr-2"></i> See Demo
199
- </button>
200
- </div>
201
- </div>
202
 
203
- <div class="md:w-1/2 flex justify-center">
204
- <div class="relative w-full max-w-xl">
205
- <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-80 h-80 bg-gradient-to-tr from-indigo-500 to-cyan-400 rounded-full filter blur-[100px] opacity-30"></div>
206
- <div class="analytics-preview flex justify-center">
207
- <div class="cube">
208
- <div class="front">AI Content</div>
209
- <div class="back">Performance</div>
210
- <div class="right">Sentiment</div>
211
- <div class="left">Trends</div>
212
- <div class="top">Schedule</div>
213
- <div class="bottom">Tours</div>
214
- </div>
 
 
 
215
  </div>
216
  </div>
217
- </div>
218
- </div>
219
- </div>
220
- </section>
221
-
222
- <!-- Features Section -->
223
- <section id="features" class="py-20">
224
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
225
- <div class="text-center mb-20">
226
- <h2 class="text-3xl md:text-4xl font-bold mb-4 font-orbitron">The Future of Social Media Management</h2>
227
- <p class="text-lg text-cyan-100 max-w-3xl mx-auto">
228
- With Tourderwang 2.0, transform your content strategy with cutting-edge AI and immersive analytics.
229
- </p>
230
- </div>
231
-
232
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
233
- <!-- Feature 1 -->
234
- <div class="card p-8">
235
- <div class="feature-icon mb-4">
236
- <i class="fas fa-brain"></i>
237
- </div>
238
- <h3 class="text-xl font-bold mb-3 font-orbitron">AI Content Generation</h3>
239
- <p class="text-cyan-100 mb-4">
240
- Create compelling, optimized content in seconds with our advanced AI engine - tailored to your brand voice.
241
- </p>
242
- <div class="bg-gray-800 p-4 rounded-lg border border-indigo-900">
243
- <div class="flex justify-between mb-2">
244
- <span class="text-sm text-indigo-300">Content Score</span>
245
- <span class="text-sm text-cyan-400">94%</span>
246
- </div>
247
- <div class="w-full bg-gray-700 rounded-full h-2">
248
- <div class="bg-gradient-to-r from-indigo-500 to-cyan-400 h-2 rounded-full" style="width: 94%"></div>
249
- </div>
250
- </div>
251
- </div>
252
-
253
- <!-- Feature 2 -->
254
- <div class="card p-8">
255
- <div class="feature-icon mb-4">
256
- <i class="fas fa-globe"></i>
257
- </div>
258
- <h3 class="text-xl font-bold mb-3 font-orbitron">Multi-Language Support</h3>
259
- <p class="text-cyan-100 mb-4">
260
- Reach global audiences effortlessly with native-language content generation and translation tools.
261
- </p>
262
- <div class="flex flex-wrap gap-2">
263
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">English</span>
264
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">Spanish</span>
265
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">French</span>
266
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">German</span>
267
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">Japanese</span>
268
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">Chinese</span>
269
- <span class="px-3 py-1 bg-indigo-900/50 text-indigo-100 rounded-full text-sm">+ 12 more</span>
270
- </div>
271
- </div>
272
-
273
- <!-- Feature 3 -->
274
- <div class="card p-8">
275
- <div class="feature-icon mb-4">
276
- <i class="fas fa-chart-line"></i>
277
- </div>
278
- <h3 class="text-xl font-bold mb-3 font-orbitron">Sentiment & Trend Analysis</h3>
279
- <p class="text-cyan-100 mb-4">
280
- Identify emerging trends and gauge audience sentiment with real-time AI-powered analytics.
281
- </p>
282
- <div class="flex">
283
- <div class="bg-gradient-to-br from-cyan-400 to-indigo-500 w-16 h-16 rounded-lg flex items-center justify-center mr-4">
284
- <i class="fas fa-thumbs-up text-2xl"></i>
285
- </div>
286
- <div class="flex-1">
287
- <h4 class="font-bold">Positive Sentiment</h4>
288
- <div class="flex items-center">
289
- <div class="w-4/5 h-2 bg-gray-700 rounded-full mr-2">
290
- <div class="h-2 bg-cyan-400 rounded-full" style="width: 78%"></div>
291
  </div>
292
- <span class="text-cyan-400 text-sm">78%</span>
293
  </div>
294
  </div>
295
  </div>
296
  </div>
297
-
298
- <!-- Feature 4 -->
299
- <div class="card p-8">
300
- <div class="feature-icon mb-4">
301
- <i class="fas fa-calendar-alt"></i>
302
- </div>
303
- <h3 class="text-xl font-bold mb-3 font-orbitron">AI-Powered Scheduling</h3>
304
- <p class="text-cyan-100 mb-4">
305
- Optimize engagement with intelligent scheduling powered by predictive analytics.
306
- </p>
307
- <div class="bg-gray-800 p-4 rounded-lg border border-indigo-900">
308
- <div class="flex justify-between border-b border-gray-700 pb-2 mb-2">
309
- <span>Twitter</span>
310
- <span class="text-cyan-400">2 days, 4 hours</span>
311
  </div>
312
- <div class="flex justify-between border-b border-gray-700 pb-2 mb-2">
313
- <span>Facebook</span>
314
- <span class="text-green-400">12 hours</span>
 
 
 
315
  </div>
316
- <div class="flex justify-between">
317
- <span>Instagram</span>
318
- <span class="text-cyan-400">1 day, 6 hours</span>
 
 
 
319
  </div>
320
  </div>
321
  </div>
 
 
 
 
 
 
 
 
 
 
322
 
323
- <!-- Feature 5 -->
324
- <div class="card p-8">
325
- <div class="feature-icon mb-4">
326
- <i class="fas fa-users"></i>
327
  </div>
328
- <h3 class="text-xl font-bold mb-3 font-orbitron">Team Collaboration</h3>
329
- <p class="text-cyan-100 mb-4">
330
- Manage teams, assign roles, and collaborate on content with real-time workflows.
331
- </p>
332
- <div class="flex -space-x-2">
333
- <img class="w-10 h-10 rounded-full border-2 border-cyan-400" src="https://randomuser.me/api/portraits/women/44.jpg" alt="">
334
- <img class="w-10 h-10 rounded-full border-2 border-indigo-400" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
335
- <img class="w-10 h-10 rounded-full border-2 border-violet-400" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
336
- <div class="w-10 h-10 rounded-full border-2 border-gray-600 bg-gray-800 flex items-center justify-center">
337
- <span class="text-xs text-gray-400">+3</span>
338
- </div>
339
  </div>
340
  </div>
341
 
342
- <!-- Feature 6 -->
343
- <div class="card p-8">
344
- <div class="feature-icon mb-4">
345
- <i class="fas fa-rocket"></i>
 
 
346
  </div>
347
- <h3 class="text-xl font-bold mb-3 font-orbitron">Automated Posting</h3>
348
- <p class="text-cyan-100 mb-4">
349
- Schedule, preview, and publish across all platforms with a single click.
350
- </p>
351
- <div class="flex space-x-4">
352
- <i class="fab fa-twitter text-sky-400 text-2xl"></i>
353
- <i class="fab fa-facebook text-blue-700 text-2xl"></i>
354
- <i class="fab fa-instagram text-pink-500 text-2xl"></i>
355
- <i class="fab fa-linkedin text-blue-500 text-2xl"></i>
356
- <i class="fab fa-tiktok text-gray-300 text-2xl"></i>
357
  </div>
358
  </div>
359
  </div>
360
- </div>
361
- </section>
362
 
363
- <!-- 3D Analytics Section -->
364
- <section id="analytics" class="py-20 bg-gradient-to-b from-gray-900 to-gray-950">
365
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
366
- <div class="text-center mb-16">
367
- <h2 class="text-3xl md:text-4xl font-bold mb-4 font-orbitron">Immersive 3D Analytics</h2>
368
- <p class="text-lg text-cyan-100 max-w-3xl mx-auto">
369
- Step inside your data with our revolutionary interactive 3D dashboard that brings analytics to life.
370
- </p>
371
- </div>
372
-
373
- <div class="flex flex-col md:flex-row items-center">
374
- <div class="md:w-1/2 mb-12 md:mb-0 flex justify-center">
375
- <div class="relative w-full max-w-md">
376
- <div class="absolute -top-20 -left-20 w-64 h-64 bg-gradient-to-tr from-indigo-600 to-cyan-500 rounded-full filter blur-3xl opacity-20"></div>
377
- <div class="analytics-preview">
378
- <div class="cube w-64 h-64 mx-auto">
379
- <div class="front w-64 h-64 flex flex-col p-4">
380
- <div class="text-lg font-bold mb-2">Engagement Score</div>
381
- <div class="text-5xl font-orbitron text-cyan-300">92%</div>
382
- </div>
383
- <div class="back w-64 h-64 flex flex-col p-4">
384
- <div class="text-lg font-bold mb-2">Reach</div>
385
- <div class="text-5xl font-orbitron text-purple-300">24.7K</div>
386
- </div>
387
- <div class="right w-64 h-64 flex flex-col p-4">
388
- <div class="text-lg font-bold mb-2">Sentiment</div>
389
- <div class="text-5xl font-orbitron text-pink-300">78%</div>
390
- </div>
391
- <div class="left w-64 h-64 flex flex-col p-4">
392
- <div class="text-lg font-bold mb-2">Shares</div>
393
- <div class="text-5xl font-orbitron text-blue-300">1.2K</div>
394
- </div>
395
- <div class="top w-64 h-64 flex flex-col p-4">
396
- <div class="text-lg font-bold mb-2">New Followers</div>
397
- <div class="text-5xl font-orbitron text-green-300">287</div>
398
- </div>
399
- <div class="bottom w-64 h-64 flex flex-col p-4">
400
- <div class="text-lg font-bold mb-2">Best Time</div>
401
- <div class="text-4xl font-orbitron text-yellow-300">10:42 AM</div>
402
- </div>
403
- </div>
404
- </div>
405
- </div>
406
  </div>
407
 
408
- <div class="md:w-1/2">
409
- <div class="pl-0 md:pl-12">
410
- <h3 class="text-2xl font-bold mb-6 font-orbitron">Data Visualization Reimagined</h3>
411
-
412
- <div class="space-y-6">
413
- <div class="flex">
414
- <div class="mr-4 mt-1">
415
- <div class="bg-gradient-to-br from-cyan-500 to-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center">
416
- <i class="fas fa-expand text-xl"></i>
417
- </div>
418
- </div>
419
- <div>
420
- <h4 class="text-lg font-bold mb-1">360-Degree Insight</h4>
421
- <p class="text-cyan-100">Explore your data from every perspective with our dynamic 3D visualization.</p>
422
- </div>
423
- </div>
424
-
425
- <div class="flex">
426
- <div class="mr-4 mt-1">
427
- <div class="bg-gradient-to-br from-cyan-500 to-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center">
428
- <i class="fas fa-search-plus text-xl"></i>
429
- </div>
430
- </div>
431
- <div>
432
- <h4 class="text-lg font-bold mb-1">Deep Analytics</h4>
433
- <p class="text-cyan-100">Dive into granular performance metrics and uncover hidden patterns.</p>
434
- </div>
435
- </div>
436
-
437
- <div class="flex">
438
- <div class="mr-4 mt-1">
439
- <div class="bg-gradient-to-br from-cyan-500 to-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center">
440
- <i class="fas fa-vr-cardboard text-xl"></i>
441
- </div>
442
- </div>
443
- <div>
444
- <h4 class="text-lg font-bold mb-1">Immersive Experience</h4>
445
- <p class="text-cyan-100">Experience your analytics as never before with spatial interfaces.</p>
446
- </div>
447
- </div>
448
-
449
- <div class="mt-8">
450
- <button class="bg-gradient-to-r from-indigo-600 to-cyan-500 text-white font-bold py-4 px-8 rounded-full text-lg hover:from-indigo-700 hover:to-cyan-600 hover:shadow-xl hover:shadow-indigo-500/30 transition-all">
451
- Explore Dashboard
452
- </button>
453
- </div>
454
  </div>
455
  </div>
456
- </div>
457
- </div>
458
- </div>
459
- </section>
460
-
461
- <!-- CTA Section -->
462
- <section class="py-24 cta-bg">
463
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
464
- <div class="py-12 px-6 md:px-12 bg-gray-900 rounded-3xl border border-indigo-900/50 rounded-xl">
465
- <h2 class="text-3xl md:text-4xl font-bold mb-6 font-orbitron">
466
- Ready to Transform Your Social Media?
467
- </h2>
468
- <p class="text-xl text-cyan-100 max-w-2xl mx-auto mb-8">
469
- Join thousands of content creators and marketers already revolutionizing their workflow with Tourderwang 2.0
470
- </p>
471
- <button class="bg-gradient-to-r from-indigo-600 to-cyan-500 text-white font-bold py-4 px-12 rounded-full text-lg hover:from-indigo-700 hover:to-cyan-600 hover:shadow-xl hover:shadow-indigo-500/30 transition-all transform hover:scale-105">
472
- Start Your Free Trial <i class="fas fa-arrow-right ml-2"></i>
473
- </button>
474
- </div>
475
- </div>
476
- </section>
477
-
478
- <!-- Tech Stack Section -->
479
- <section id="tech" class="py-16 pb-20">
480
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
481
- <div class="text-center mb-16">
482
- <h2 class="text-3xl md:text-4xl font-bold mb-4 font-orbitron">Powerful Technology Stack</h2>
483
- <p class="text-lg text-cyan-100 max-w-3xl mx-auto">
484
- Built on cutting-edge tools for performance, security, and scalability
485
- </p>
486
- </div>
487
-
488
- <div class="flex justify-center">
489
- <div class="bg-gray-800 p-8 rounded-2xl w-full max-w-4xl">
490
- <div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
491
- <div>
492
- <div class="bg-gray-900 rounded-2xl p-6 flex flex-col items-center">
493
- <i class="fab fa-vuejs text-5xl text-green-400 mb-4"></i>
494
- <h3 class="text-xl font-bold mb-1 font-orbitron">Vite</h3>
495
- <p class="text-cyan-100">Lightning Fast Tooling</p>
496
- </div>
497
  </div>
498
- <div>
499
- <div class="bg-gray-900 rounded-2xl p-6 flex flex-col items-center">
500
- <i class="fab fa-react text-5xl text-cyan-300 mb-4"></i>
501
- <h3 class="text-xl font-bold mb-1 font-orbitron">React</h3>
502
- <p class="text-cyan-100">Modern Frontend</p>
503
- </div>
 
 
504
  </div>
505
- <div>
506
- <div class="bg-gray-900 rounded-2xl p-6 flex flex-col items-center">
507
- <i class="fas fa-database text-5xl text-amber-400 mb-4"></i>
508
- <h3 class="text-xl font-bold mb-1 font-orbitron">Supabase</h3>
509
- <p class="text-cyan-100">Backend + Auth</p>
510
- </div>
 
 
 
511
  </div>
512
- <div>
513
- <div class="bg-gray-900 rounded-2xl p-6 flex flex-col items-center">
514
- <i class="fas fa-paint-brush text-5xl text-indigo-400 mb-4"></i>
515
- <h3 class="text-xl font-bold mb-1 font-orbitron">Tailwind</h3>
516
- <p class="text-cyan-100">CSS Framework</p>
 
 
 
517
  </div>
518
  </div>
519
  </div>
520
  </div>
521
  </div>
522
- </div>
523
- </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
 
525
  <!-- Footer -->
526
- <footer class="pt-16 pb-8 border-t border-indigo-900/50">
527
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
528
- <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
529
  <div>
530
- <h3 class="text-lg font-bold mb-4 text-cyan-300 font-orbitron">Tourderwang 2.0</h3>
531
- <p class="text-cyan-100 mb-4">
532
- Revolutionizing social media content creation with AI power and immersive analytics.
533
- </p>
534
- <div class="flex space-x-4">
535
- <a href="#" class="text-indigo-300 hover:text-white"><i class="fab fa-twitter"></i></a>
536
- <a href="#" class="text-indigo-300 hover:text-white"><i class="fab fa-linkedin"></i></a>
537
- <a href="#" class="text-indigo-300 hover:text-white"><i class="fab fa-github"></i></a>
538
- <a href="#" class="text-indigo-300 hover:text-white"><i class="fab fa-instagram"></i></a>
539
  </div>
 
 
 
540
  </div>
541
 
542
  <div>
543
- <h3 class="text-lg font-bold mb-4 text-cyan-300 font-orbitron">Features</h3>
544
  <ul class="space-y-2">
545
- <li><a href="#" class="text-cyan-100 hover:text-white">AI Content Generation</a></li>
546
- <li><a href="#" class="text-cyan-100 hover:text-white">3D Analytics Dashboard</a></li>
547
- <li><a href="#" class="text-cyan-100 hover:text-white">Multi-Language Support</a></li>
548
- <li><a href="#" class="text-cyan-100 hover:text-white">Advanced Scheduling</a></li>
549
- <li><a href="#" class="text-cyan-100 hover:text-white">Team Collaboration</a></li>
550
  </ul>
551
  </div>
552
 
553
  <div>
554
- <h3 class="text-lg font-bold mb-4 text-cyan-300 font-orbitron">Resources</h3>
555
  <ul class="space-y-2">
556
- <li><a href="#" class="text-cyan-100 hover:text-white">Documentation</a></li>
557
- <li><a href="#" class="text-cyan-100 hover:text-white">API Reference</a></li>
558
- <li><a href="#" class="text-cyan-100 hover:text-white">Tutorials</a></li>
559
- <li><a href="#" class="text-cyan-100 hover:text-white">Blog</a></li>
560
- <li><a href="#" class="text-cyan-100 hover:text-white">Community</a></li>
 
 
 
 
 
 
 
561
  </ul>
562
  </div>
563
 
564
  <div>
565
- <h3 class="text-lg font-bold mb-4 text-cyan-300 font-orbitron">Subscribe</h3>
566
- <p class="text-cyan-100 mb-4">Get the latest updates and news.</p>
567
- <form class="space-y-3">
568
- <input type="email" placeholder="Your email" class="w-full bg-gray-800 border border-indigo-900 rounded-full py-3 px-6 text-white placeholder-indigo-400 focus:outline-none focus:ring-1 focus:ring-indigo-500">
569
- <button class="w-full bg-gradient-to-r from-indigo-600 to-cyan-500 text-white font-bold py-3 rounded-full hover:from-indigo-700 hover:to-cyan-600 transition">
570
- Subscribe
571
- </button>
572
- </form>
 
 
 
 
 
 
 
573
  </div>
574
  </div>
575
 
576
- <div class="pt-8 border-t border-indigo-900/50 text-center">
577
- <p class="text-indigo-400">© 2023 Tourderwang 2.0. All rights reserved.</p>
578
  </div>
579
  </div>
580
  </footer>
581
 
 
582
  <script>
583
- // Mobile menu toggle
584
- const mobileMenuButton = document.getElementById('mobile-menu-button');
585
- const mobileMenu = document.getElementById('mobile-menu');
586
-
587
- mobileMenuButton.addEventListener('click', () => {
588
- mobileMenu.classList.toggle('hidden');
589
  });
 
 
 
 
590
 
591
- // Smooth scrolling for anchor links
592
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
593
- anchor.addEventListener('click', function(e) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
  e.preventDefault();
595
- const target = document.querySelector(this.getAttribute('href'));
596
- if (target) {
597
- window.scrollTo({
598
- top: target.offsetTop - 100,
599
- behavior: 'smooth'
600
- });
601
-
602
- // Close mobile menu if open
603
- mobileMenu.classList.add('hidden');
604
- }
605
  });
606
  });
 
 
 
 
 
607
  </script>
608
  <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=kritsanan/instructa" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
609
  </html>
 
1
  <!DOCTYPE html>
2
+ <html lang="th">
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ที่นี่วังสามหมอ - Tour Der Wang</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Sarabun:wght@400;500;700&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
 
 
 
10
  <script>
11
  tailwind.config = {
12
  theme: {
13
  extend: {
14
  colors: {
15
+ 'pastel-orange-light': '#FFE5CC',
16
+ 'pastel-orange': '#FFCC99',
17
+ 'pastel-orange-dark': '#e6b889',
 
 
18
  },
19
  fontFamily: {
20
+ 'sarabun': ['Sarabun', 'sans-serif']
 
 
 
 
 
 
 
 
 
 
 
21
  }
22
  }
23
  }
24
  }
25
  </script>
26
  <style>
 
 
 
27
  body {
28
+ font-family: 'Sarabun', sans-serif;
29
+ background-color: #fffdf5;
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
+ .phra-chedi-divider {
 
 
 
 
 
 
 
 
32
  position: relative;
33
+ padding-bottom: 50px;
34
  }
35
+ .phra-chedi-divider:after {
36
+ content: "";
37
  position: absolute;
38
+ bottom: 0;
39
+ left: calc(50% - 25px);
40
+ width: 50px;
41
+ height: 50px;
42
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FF9A3D' d='M24 4.3l-20 10v10l2 2h36l2-2v-10l-20-10zm-2 15.7h4v6h-4v-6zm4 8h-4v4h4v-4z'/%3E%3C/svg%3E");
43
+ background-repeat: no-repeat;
44
+ background-size: contain;
45
  }
46
+ .section-transition {
47
+ transition: opacity 0.4s ease, transform 0.4s ease;
48
  }
49
+ @keyframes floating {
50
+ 0% { transform: translateY(0px); }
51
+ 50% { transform: translateY(-12px); }
52
+ 100% { transform: translateY(0px); }
 
 
 
53
  }
54
+ .floating {
55
+ animation: floating 6s ease-in-out infinite;
 
56
  }
57
+ .gradient-bg {
58
+ background: radial-gradient(circle, rgba(255,229,204,0.7) 0%, rgba(255,255,255,0.8) 70%);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  }
60
  </style>
61
  </head>
62
+ <body class="min-h-screen flex flex-col bg-gradient-to-b from-pastel-orange-light to-white text-gray-800">
63
+ <!-- Header -->
64
+ <header class="bg-white shadow-md sticky top-0 z-50">
65
+ <div class="container mx-auto px-4">
66
+ <div class="flex justify-between items-center py-4">
67
+ <!-- Logo -->
68
+ <div class="flex items-center space-x-2">
69
+ <div class="w-12 h-12 rounded-lg bg-pastel-orange flex items-center justify-center">
70
+ <i class="fas fa-pagoda text-white text-xl"></i>
 
 
 
 
 
71
  </div>
72
+ <h1 class="text-xl md:text-2xl font-bold">ที่นี่<span class="text-orange-600">วังสามหมอ</span></h1>
73
  </div>
74
 
75
+ <!-- Desktop Navigation -->
76
+ <nav class="hidden lg:flex space-x-1">
77
+ <a href="#" data-target="home" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">หน้าหลัก</a>
78
+ <a href="#" data-target="history" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">ประวัติศาสตร์</a>
79
+ <a href="#" data-target="content" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">คอนเทนท์</a>
80
+ <a href="#" data-target="business" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">ร้านอาหาร-ห้องพัก</a>
81
+ <a href="#" data-target="jobs" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">หางาน-หาพนักงาน</a>
82
+ <a href="#" data-target="pricing" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">ค่าบริการ</a>
83
+ <a href="#" data-target="about" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition">เกี่ยวกับเรา</a>
84
+ <a href="#" data-target="login" class="px-4 py-2 rounded-lg bg-orange-500 text-white hover:bg-orange-600 transition">เข้าสู่ระบบ</a>
85
+ </nav>
86
 
87
+ <!-- Mobile Menu Button -->
88
+ <button id="mobileMenuButton" class="lg:hidden text-2xl">
89
+ <i class="fas fa-bars"></i>
90
+ </button>
 
 
 
 
 
 
 
91
  </div>
92
 
93
+ <!-- Mobile Navigation -->
94
+ <nav id="mobileMenu" class="hidden lg:hidden py-4 border-t">
95
+ <div class="flex flex-col space-y-2">
96
+ <a href="#" data-target="home" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">หน้าหลัก</a>
97
+ <a href="#" data-target="history" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">ประวัติศาสตร์</a>
98
+ <a href="#" data-target="content" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">คอนเทนท์</a>
99
+ <a href="#" data-target="business" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">ร้านอาหาร-ห้องพัก</a>
100
+ <a href="#" data-target="jobs" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">หางาน-หาพนักงาน</a>
101
+ <a href="#" data-target="pricing" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">ค่าบริการ</a>
102
+ <a href="#" data-target="about" class="page-link px-4 py-2 rounded-lg hover:bg-pastel-orange-light transition text-center">เกี่ยวกับเรา</a>
103
+ <a href="#" data-target="login" class="px-4 py-2 rounded-lg bg-orange-500 text-white hover:bg-orange-600 transition text-center">เข้าสู่ระบบ</a>
104
  </div>
105
+ </nav>
106
  </div>
107
+ </header>
108
 
109
+ <main class="flex-grow">
110
+ <!-- Homepage -->
111
+ <section id="home" class="page-section py-12 gradient-bg min-h-[calc(100vh-150px)]">
112
+ <div class="container mx-auto px-4 relative">
113
+ <!-- Floating decorations -->
114
+ <div class="absolute -top-16 right-10 w-24 h-24 bg-pastel-orange rounded-full opacity-30 floating"></div>
115
+ <div class="absolute -bottom-12 left-4 w-36 h-36 bg-pastel-orange rounded-full opacity-20 floating" style="animation-delay: 2s;"></div>
116
+ <div class="absolute top-1/4 left-24 w-14 h-14 bg-orange-200 rounded-full opacity-40 floating" style="animation-delay: 4s;"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
+ <div class="flex flex-col lg:flex-row items-center">
119
+ <div class="lg:w-1/2 z-10">
120
+ <h2 class="text-3xl md:text-4xl lg:text-5xl font-bold mb-4">
121
+ ยินดีต้อนรับสู่ <span class="text-amber-700">"วังสามหมอ"</span> <br>จุดหมายปลายทางของทุกสิ่ง
122
+ </h2>
123
+ <p class="text-lg mb-8 max-w-xl">
124
+ เพลิดเพลินไปกับประสบการณ์การเดินทางท่องเที่ยว ผสมผสานวัฒนธรรม การรับประทานอาหารชั้นเลิศ และโอกาสทางอาชีพใต้ท้องฟ้าแสนสวยของเรา
125
+ </p>
126
+ <div class="flex flex-wrap gap-4">
127
+ <a href="#" data-target="business" class="px-6 py-3 bg-orange-500 text-white rounded-full text-lg font-medium hover:bg-orange-600 transition flex items-center">
128
+ <i class="fas fa-map-marked-alt mr-2"></i> ค้นหาสถานที่ท่องเที่ยว
129
+ </a>
130
+ <a href="#" data-target="jobs" class="px-6 py-3 bg-white text-orange-600 border border-orange-500 rounded-full text-lg font-medium hover:bg-orange-50 transition flex items-center">
131
+ <i class="fas fa-briefcase mr-2"></i> หางานในท้องถิ่น
132
+ </a>
133
  </div>
134
  </div>
135
+ <div class="lg:w-1/2 z-10 mt-10 lg:mt-0">
136
+ <div class="relative">
137
+ <div class="rounded-2xl overflow-hidden shadow-xl">
138
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-80 md:h-96"></div>
139
+ </div>
140
+ <div class="absolute -bottom-5 -right-5 w-32 h-32 bg-pastel-orange rounded-full flex items-center justify-center">
141
+ <div class="text-amber-800 text-center">
142
+ <i class="fas fa-umbrella-beach text-4xl mb-1"></i>
143
+ <p class="font-bold">วังสามหมอ</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  </div>
 
145
  </div>
146
  </div>
147
  </div>
148
  </div>
149
+
150
+ <!-- Features Section -->
151
+ <div class="mt-16 pt-12 phra-chedi-divider">
152
+ <h2 class="text-3xl font-bold text-center mb-12">บริการของเรา</h2>
153
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
154
+ <div class="feature-card bg-white p-6 rounded-2xl shadow-md hover:shadow-xl transition">
155
+ <div class="w-16 h-16 rounded-full bg-pastel-orange-light flex items-center justify-center mb-4">
156
+ <i class="fas fa-hotel text-2xl text-amber-600"></i>
157
+ </div>
158
+ <h3 class="text-xl font-bold mb-2">ที่พักและร้านอาหาร</h3>
159
+ <p class="text-gray-600">ค้นพบที่พักดีๆ และรสชาติอาหารท้องถิ่นที่หาไม่ได้จากที่อื่น</p>
 
 
 
160
  </div>
161
+ <div class="feature-card bg-white p-6 rounded-2xl shadow-md hover:shadow-xl transition">
162
+ <div class="w-16 h-16 rounded-full bg-pastel-orange-light flex items-center justify-center mb-4">
163
+ <i class="fas fa-briefcase text-2xl text-amber-600"></i>
164
+ </div>
165
+ <h3 class="text-xl font-bold mb-2">โอกาสทางอาชีพ</h3>
166
+ <p class="text-gray-600">เชื่อมโยงผู้หางานกับนายจ้างในธุรกิจท้องถิ่น</p>
167
  </div>
168
+ <div class="feature-card bg-white p-6 rounded-2xl shadow-md hover:shadow-xl transition">
169
+ <div class="w-16 h-16 rounded-full bg-pastel-orange-light flex items-center justify-center mb-4">
170
+ <i class="fas fa-map-signs text-2xl text-amber-600"></i>
171
+ </div>
172
+ <h3 class="text-xl font-bold mb-2">ทัวร์และประสบการณ์</h3>
173
+ <p class="text-gray-600">เปิดโลกเที่ยวชมสถานที่สวยงามและวัฒนธรรมของวังสามหมอ</p>
174
  </div>
175
  </div>
176
  </div>
177
+ </div>
178
+ </section>
179
+
180
+ <!-- History Page -->
181
+ <section id="history" class="page-section hidden py-16 min-h-screen bg-white">
182
+ <div class="container mx-auto px-4">
183
+ <div class="text-center mb-12">
184
+ <h2 class="text-3xl font-bold">ประวัติศาสตร์<span class="text-amber-700">แห่งวังสามหมอ</span></h2>
185
+ <div class="w-24 h-1 bg-amber-500 mx-auto mt-3"></div>
186
+ </div>
187
 
188
+ <div class="flex flex-col lg:flex-row gap-8 items-center">
189
+ <div class="lg:w-1/2">
190
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-80"></div>
 
191
  </div>
192
+ <div class="lg:w-1/2">
193
+ <h3 class="text-2xl font-bold mb-4">เรื่องเล่าขานของเมือง</h3>
194
+ <p class="mb-4">
195
+ วังสามหมอเป็นตำบลในพื้นที่อำเภอโนนสูงของจังหวัดนครราชสีมา โดยมีสถานที่ที่ขึ้นชื่อคือ วัดสามัคคีธรรมวนาราม หรือชาวบ้านเรียกติดปากว่า "วัดเขาใหญ่" ด้วยสถาปัตยกรรมที่สวยงามของวิหารแก้วกลางน้ำ แม้ว่ามีผู้คนมาสักการะน้อยลงเนื่องจากความลาดชันและความแข็งแรงของสถานที่ แต่ก็ยังเป็นสถานที่ท่องเที่ยวที่สำคัญ
196
+ </p>
197
+ <p>
198
+ ชื่อ "วังสามหมอ" นั้นมีที่มาจากตำนานเล่าขานว่า ในอดีตมีหมออยู่สามท่านที่เป็นภิกษุและมีความรู้ด้านแพทย์แผนโบราณอย่างเชี่ยวชาญ สามารถรักษาผู้คนได้อย่างยอดเยี่ยม จึงเป็นที่รักใคร่นับถือของชาวบ้าน และตั้งหมู่บ้านชื่อว่า "หมู่บ้านวังสามหมอ" จนทุกวันนี้
199
+ </p>
 
 
 
200
  </div>
201
  </div>
202
 
203
+ <div class="mt-16 grid grid-cols-1 md:grid-cols-2 gap-8">
204
+ <div class="bg-pastel-orange-light rounded-2xl p-6">
205
+ <h4 class="text-xl font-bold mb-3">วัฒนธรรมและประเพณี</h4>
206
+ <p>
207
+ ประเพณีสำคัญของชาววังสามหมอคือ การทำบุญวันมาฆบูชาและวันสำคัญทางศาสนา ถือเป็นประเพณีที่กระทำกันมาช้านาน นอกจากนี้ยังมีการรักษาวิถีชีวิตพื้นบ้านแบบดั้งเดิมไว้อย่างเหนียวแน่น
208
+ </p>
209
  </div>
210
+ <div class="bg-pastel-orange-light rounded-2xl p-6">
211
+ <h4 class="text-xl font-bold mb-3">แหล่งท่องเที่ยวสำคัญ</h4>
212
+ <p>
213
+ น้ำตกถ้ำสวย มูลนิธิหลวงพ่อโต ถ้ำนางคอย และสถานปฏิบัติธรรมถ้ำคนองเป็นสถานที่น่าสนใจในท้องถิ่นนอกจากวัดเขาใหญ่ ทั้งเป็นสถานที่ศักดิ์สิทธิ์และมีธรรมชาติอันสวยงาม
214
+ </p>
 
 
 
 
 
215
  </div>
216
  </div>
217
  </div>
218
+ </section>
 
219
 
220
+ <!-- Content Page -->
221
+ <section id="content" class="page-section hidden py-16 min-h-screen bg-pastel-orange-light">
222
+ <div class="container mx-auto px-4">
223
+ <div class="text-center mb-12">
224
+ <h2 class="text-3xl font-bold">คอนเทนท์<span class="text-amber-700">ท้องถิ่น</span></h2>
225
+ <p class="text-xl">การเดินทาง วัฒนธรรม และสถานที่น่าสนใจ</p>
226
+ <div class="w-24 h-1 bg-amber-500 mx-auto mt-3"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  </div>
228
 
229
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
230
+ <!-- Placeholder cards for content -->
231
+ <div class="bg-white rounded-2xl overflow-hidden shadow-md hover:shadow-xl transition">
232
+ <div class="bg-gray-200 border-2 border-dashed w-full h-48"></div>
233
+ <div class="p-5">
234
+ <span class="text-orange-600 font-medium text-sm"><i class="fas fa-calendar-alt mr-1"></i> 5 สิงหาคม 2566</span>
235
+ <h3 class="text-xl font-bold my-2">เส้นทางผจญภัยบนเขาใหญ่สุดมัน</h3>
236
+ <p class="text-gray-600">สำรวจเส้นทางเดินป่าและจุดชมวิวยอดฮิตน่าไปทำเป็นกิจกรรมครั้งหนึ่งในชีวิต</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  </div>
238
  </div>
239
+
240
+ <div class="bg-white rounded-2xl overflow-hidden shadow-md hover:shadow-xl transition">
241
+ <div class="bg-gray-200 border-2 border-dashed w-full h-48"></div>
242
+ <div class="p-5">
243
+ <span class="text-orange-600 font-medium text-sm"><i class="fas fa-calendar-alt mr-1"></i> 21 กรกฎาคม 2566</span>
244
+ <h3 class="text-xl font-bold my-2">สูตรลับแกงคั่วหอยขมแม่ศรีจันทร์</h3>
245
+ <p class="text-gray-600">แกะรอยตำรับอาหารพื้นบ้านเพื่อสุขภาพที่สืบทอดกันมานานหลายชั่วอายุคน</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  </div>
247
+ </div>
248
+
249
+ <div class="bg-white rounded-2xl overflow-hidden shadow-md hover:shadow-xl transition">
250
+ <div class="bg-gray-200 border-2 border-dashed w-full h-48"></div>
251
+ <div class="p-5">
252
+ <span class="text-orange-600 font-medium text-sm"><i class="fas fa-calendar-alt mr-1"></i> 4 กรกฎาคม 2566</span>
253
+ <h3 class="text-xl font-bold my-2">งานเลี้ยงบุญขนครชัยเมืองวังสามหมอ</h3>
254
+ <p class="text-gray-600">ร่วมเรียนรู้ประเพณีเก่าแก่ที่ยังคงมีลมหายใจแม้ว่าจะก้าวสู่ศตวรรษที่ 21</p>
255
  </div>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Video section -->
260
+ <div class="mt-16 bg-white rounded-2xl p-6 shadow-md">
261
+ <h3 class="text-2xl font-bold mb-6">วังสามหมอบนภาพยนตร์</h3>
262
+ <div class="flex flex-col lg:flex-row gap-8 items-center">
263
+ <div class="lg:w-1/2">
264
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-96"></div>
265
  </div>
266
+ <div class="lg:w-1/2">
267
+ <h4 class="text-xl font-bold mb-3">สำรวจเบื้องหลังความงามผ่านลวดกล้อง</h4>
268
+ <p>
269
+ หนังสั้นเรื่อง "ทางลัดวังสามหมอ" ซึ่งได้รับการคัดเลือกแสดงในเทศกาลภาพยนตร์ท้องถิ่น ได้นำเสนอด้านน้อยรู้ของวัฒนธรรมและธรรมชาติอันเขียวชอุ่ม ได้เสียงวิจารณ์ที่ดีจากผู้ชมและนักวิจารณ์ได้อย่างภาคภูมิ
270
+ </p>
271
+ <div class="mt-4 flex gap-3">
272
+ <a href="#" class="px-4 py-2 bg-orange-500 text-white rounded-full text-sm">ดูทั้งหมด</a>
273
+ <a href="#" class="px-4 py-2 border border-orange-500 text-orange-500 rounded-full text-sm">แบ่งปัน</a>
274
  </div>
275
  </div>
276
  </div>
277
  </div>
278
  </div>
279
+ </section>
280
+
281
+ <!-- Business Directory Page (simplified for layout) -->
282
+ <section id="business" class="page-section hidden py-16 min-h-screen bg-white">
283
+ <div class="container mx-auto px-4">
284
+ <!-- Section content would be similar structured -->
285
+ </div>
286
+ </section>
287
+
288
+ <!-- Jobs Page (simplified for layout) -->
289
+ <section id="jobs" class="page-section hidden py-16 min-h-screen bg-pastel-orange-light">
290
+ <div class="container mx-auto px-4">
291
+ <!-- Section content would be similar structured -->
292
+ </div>
293
+ </section>
294
+
295
+ <!-- Pricing Page (simplified for layout) -->
296
+ <section id="pricing" class="page-section hidden py-16 min-h-screen bg-white">
297
+ <div class="container mx-auto px-4">
298
+ <!-- Section content would be similar structured -->
299
+ </div>
300
+ </section>
301
+
302
+ <!-- About Us Page (simplified for layout) -->
303
+ <section id="about" class="page-section hidden py-16 min-h-screen bg-pastel-orange-light">
304
+ <div class="container mx-auto px-4">
305
+ <!-- Section content would be similar structured -->
306
+ </div>
307
+ </section>
308
+
309
+ <!-- Login Page (simplified for layout) -->
310
+ <section id="login" class="page-section hidden py-16 min-h-screen bg-white">
311
+ <div class="container mx-auto px-4">
312
+ <!-- Section content would be similar structured -->
313
+ </div>
314
+ </section>
315
+ </main>
316
 
317
  <!-- Footer -->
318
+ <footer class="bg-gray-900 text-white pt-12 pb-4">
319
+ <div class="container mx-auto px-4">
320
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
321
  <div>
322
+ <div class="flex items-center space-x-2 mb-4">
323
+ <div class="w-10 h-10 rounded-lg bg-pastel-orange flex items-center justify-center">
324
+ <i class="fas fa-pagoda text-white"></i>
325
+ </div>
326
+ <h2 class="text-xl font-bold">ที่นี่<span class="text-orange-400">วังสามหมอ</span></h2>
 
 
 
 
327
  </div>
328
+ <p class="text-gray-400">
329
+ แพลตฟอร์มเพื่อการท่องเที่ยวและโอกาสทางอาชีพในชุมชนวังสามหมอ อำเภอโนนสูง จังหวัดนครราชสีมา
330
+ </p>
331
  </div>
332
 
333
  <div>
334
+ <h3 class="text-lg font-bold mb-4">ลิงก์สำคัญ</h3>
335
  <ul class="space-y-2">
336
+ <li><a href="#" class="text-gray-400 hover:text-white transition">นโยบายความเป็นส่วนตัว</a></li>
337
+ <li><a href="#" class="text-gray-400 hover:text-white transition">ข้อกำหนดการใช้งาน</a></li>
338
+ <li><a href="#" class="text-gray-400 hover:text-white transition">คำถามที่พบบ่อย</a></li>
339
+ <li><a href="#" class="text-gray-400 hover:text-white transition">คำติชม</a></li>
 
340
  </ul>
341
  </div>
342
 
343
  <div>
344
+ <h3 class="text-lg font-bold mb-4">ติดต่อเรา</h3>
345
  <ul class="space-y-2">
346
+ <li class="flex items-start">
347
+ <i class="fas fa-map-marker-alt text-orange-500 mt-1 mr-2"></i>
348
+ <span class="text-gray-400">ตำบลวังสามหมอ อำเภอโนนสูง จังหวัดนครราชสีมา</span>
349
+ </li>
350
+ <li class="flex items-start">
351
+ <i class="fas fa-phone text-orange-500 mt-1 mr-2"></i>
352
+ <span class="text-gray-400">044-123456</span>
353
+ </li>
354
+ <li class="flex items-start">
355
+ <i class="fas fa-envelope text-orange-500 mt-1 mr-2"></i>
356
+ <span class="text-gray-400">info@wangsammo.com</span>
357
+ </li>
358
  </ul>
359
  </div>
360
 
361
  <div>
362
+ <h3 class="text-lg font-bold mb-4">ติดตามเรา</h3>
363
+ <div class="flex space-x-3">
364
+ <a href="#" class="w-10 h-10 rounded-full bg-orange-600 flex items-center justify-center hover:bg-orange-700 transition">
365
+ <i class="fab fa-facebook-f"></i>
366
+ </a>
367
+ <a href="#" class="w-10 h-10 rounded-full bg-orange-600 flex items-center justify-center hover:bg-orange-700 transition">
368
+ <i class="fab fa-instagram"></i>
369
+ </a>
370
+ <a href="#" class="w-10 h-10 rounded-full bg-orange-600 flex items-center justify-center hover:bg-orange-700 transition">
371
+ <i class="fab fa-line"></i>
372
+ </a>
373
+ <a href="#" class="w-10 h-10 rounded-full bg-orange-600 flex items-center justify-center hover:bg-orange-700 transition">
374
+ <i class="fab fa-youtube"></i>
375
+ </a>
376
+ </div>
377
  </div>
378
  </div>
379
 
380
+ <div class="border-t border-gray-800 mt-8 pt-4 text-center text-gray-500">
381
+ <p>&copy; 2023 ที่นี่วังสามหมอ - ทัวร์ เดอร์ หวัง. สงวนลิขสิทธิ์.</p>
382
  </div>
383
  </div>
384
  </footer>
385
 
386
+ <!-- JavaScript for navigation and interactions -->
387
  <script>
388
+ // Toggle mobile menu
389
+ document.getElementById('mobileMenuButton').addEventListener('click', function() {
390
+ const menu = document.getElementById('mobileMenu');
391
+ menu.classList.toggle('hidden');
 
 
392
  });
393
+
394
+ // Page navigation
395
+ const navLinks = document.querySelectorAll('.page-link');
396
+ const sections = document.querySelectorAll('.page-section');
397
 
398
+ function navigateTo(targetId) {
399
+ sections.forEach(section => {
400
+ section.classList.add('hidden');
401
+ section.classList.remove('section-transition');
402
+ });
403
+
404
+ document.getElementById(targetId).classList.remove('hidden');
405
+ document.getElementById(targetId).classList.add('section-transition');
406
+
407
+ const mobileMenu = document.getElementById('mobileMenu');
408
+ mobileMenu.classList.add('hidden');
409
+
410
+ // Scroll to top
411
+ window.scrollTo(0, 0);
412
+ }
413
+
414
+ navLinks.forEach(link => {
415
+ link.addEventListener('click', function(e) {
416
  e.preventDefault();
417
+ const target = this.dataset.target;
418
+ navigateTo(target);
 
 
 
 
 
 
 
 
419
  });
420
  });
421
+
422
+ // Set homepage as default
423
+ window.addEventListener('DOMContentLoaded', () => {
424
+ navigateTo('home');
425
+ });
426
  </script>
427
  <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=kritsanan/instructa" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
428
  </html>