Fix contact-us page:

- Fix email to contact@moreminimore.com
- Fix LINE display to @moreminimore
- Remove Facebook from contact cards
- Remove 'ติดตามเราได้ที่' section
- Redesign to 3 balanced cards (Phone, LINE, Email)
This commit is contained in:
Kunthawat Greethong
2026-04-01 22:32:47 +07:00
parent 771d7c1927
commit 6fb90153fc

View File

@@ -38,100 +38,59 @@ import Layout from '../layouts/Layout.astro'
</div>
</section>
<!-- Contact Methods -->
<!-- Contact Methods - 3 Cards Centered -->
<section class="reveal py-20 bg-gradient-to-b from-gray-50 to-white">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-6xl mx-auto">
<div class="grid md:grid-cols-3 gap-8 max-w-4xl mx-auto">
<!-- Phone -->
<a href="tel:0809955945" class="group bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="w-14 h-14 bg-yellow-500 rounded-2xl flex items-center justify-center mb-4 group-hover:bg-yellow-400 transition-colors">
<svg class="w-7 h-7 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<a href="tel:0809955945" class="group bg-white rounded-2xl p-8 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2 text-center">
<div class="w-16 h-16 bg-yellow-500 rounded-2xl flex items-center justify-center mx-auto mb-5 group-hover:bg-yellow-400 transition-colors">
<svg class="w-8 h-8 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
</svg>
</div>
<h3 class="text-lg font-bold mb-2 text-gray-800">โทรศัพท์</h3>
<p class="text-xl font-bold text-orange-600">080-995-5945</p>
<p class="text-sm text-gray-500 mt-2">จันทร์-ศุกร์ 9:00-18:00 น.</p>
<h3 class="text-xl font-bold mb-3 text-gray-800">โทรศัพท์</h3>
<p class="text-2xl font-bold text-orange-600 mb-2">080-995-5945</p>
<p class="text-sm text-gray-500">จันทร์-ศุกร์ 9:00-18:00 น.</p>
</a>
<!-- LINE -->
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="group bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="w-14 h-14 bg-[#06C755] rounded-2xl flex items-center justify-center mb-4 group-hover:bg-[#05B548] transition-colors">
<img src="/icons/social/line.svg" alt="LINE" class="w-7 h-7" />
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="group bg-white rounded-2xl p-8 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2 text-center">
<div class="w-16 h-16 bg-[#06C755] rounded-2xl flex items-center justify-center mx-auto mb-5 group-hover:bg-[#05B548] transition-colors">
<img src="/icons/social/line.svg" alt="LINE" class="w-8 h-8" />
</div>
<h3 class="text-lg font-bold mb-2 text-gray-800">LINE</h3>
<p class="text-xl font-bold text-[#06C755]">~@539hdlul</p>
<h3 class="text-xl font-bold mb-3 text-gray-800">LINE</h3>
<p class="text-lg font-bold text-[#06C755]">@moreminimore</p>
<p class="text-sm text-gray-500 mt-2">คลิกเพื่อเพิ่มเพื่อน</p>
</a>
<!-- Email -->
<a href="mailto:contact~@539hdlul.com" class="group bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="w-14 h-14 bg-blue-500 rounded-2xl flex items-center justify-center mb-4 group-hover:bg-blue-400 transition-colors">
<svg class="w-7 h-7 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<a href="mailto:contact@moreminimore.com" class="group bg-white rounded-2xl p-8 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2 text-center">
<div class="w-16 h-16 bg-blue-500 rounded-2xl flex items-center justify-center mx-auto mb-5 group-hover:bg-blue-400 transition-colors">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
</svg>
</div>
<h3 class="text-lg font-bold mb-2 text-gray-800">อีเมล</h3>
<p class="text-base font-bold text-blue-700 break-all">contact~@539hdlul.com</p>
<h3 class="text-xl font-bold mb-3 text-gray-800">อีเมล</h3>
<p class="text-base font-bold text-blue-700 break-all">contact@moreminimore.com</p>
<p class="text-sm text-gray-500 mt-2">ตอบกลับภายใน 24 ชม.</p>
</a>
<!-- Facebook -->
<a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="group bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
<div class="w-14 h-14 bg-blue-600 rounded-2xl flex items-center justify-center mb-4 group-hover:bg-blue-500 transition-colors">
<svg class="w-7 h-7 text-white" fill="currentColor" viewBox="0 0 24 24">
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
</svg>
</div>
<h3 class="text-lg font-bold mb-2 text-gray-800">Facebook</h3>
<p class="text-lg font-bold text-blue-700">~@539hdlul</p>
<p class="text-sm text-gray-500 mt-2">Message ได้ตลอด 24 ชม.</p>
</a>
</div>
</div>
</section>
<!-- Social Media Section -->
<section class="reveal py-16 bg-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-2xl font-bold mb-8 text-gray-800">ติดตามเราได้ที่</h2>
<div class="flex justify-center gap-6">
<a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="w-14 h-14 bg-gray-100 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-white transition-all group">
<svg class="w-6 h-6 text-gray-700 group-hover:text-white" fill="currentColor" viewBox="0 0 24 24">
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
</svg>
</a>
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="w-14 h-14 bg-gray-100 rounded-full flex items-center justify-center hover:bg-[#06C755] hover:text-white transition-all group">
<svg class="w-6 h-6 text-gray-700 group-hover:text-white" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.894 17.703c-.29.29-.767.348-1.116.174l-2.115-1.053c-.582.35-1.223.543-1.917.543-.695 0-1.335-.193-1.917-.543l-2.115 1.053c-.349.174-.826.116-1.116-.174-.29-.29-.348-.767-.174-1.116l1.053-2.115c-.35-.582-.543-1.223-.543-1.917 0-.695.193-1.335.543-1.917L5.35 8.51c-.174-.349-.116-.826.174-1.116.29-.29.767-.348 1.116-.174l2.115 1.053c.582-.35 1.223-.543 1.917-.543.695 0 1.335.193 1.917.543l2.115-1.053c.349-.174.826-.116 1.116.174.29.29.348.767.174 1.116l-1.053 2.115c.35.582.543 1.223.543 1.917 0 .695-.193 1.335-.543 1.917l1.053 2.115c.174.349.116.826-.174 1.116z"/>
</svg>
</a>
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="w-14 h-14 bg-gray-100 rounded-full flex items-center justify-center hover:bg-blue-700 hover:text-white transition-all group">
<svg class="w-6 h-6 text-gray-700 group-hover:text-white" fill="currentColor" viewBox="0 0 24 24">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</svg>
</a>
<a href="https://www.youtube.com/~@539hdlul" target="_blank" rel="noopener noreferrer" class="w-14 h-14 bg-gray-100 rounded-full flex items-center justify-center hover:bg-red-600 hover:text-white transition-all group">
<svg class="w-6 h-6 text-gray-700 group-hover:text-white" fill="currentColor" viewBox="0 0 24 24">
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/>
</svg>
</a>
</div>
</div>
</section>
<!-- Working Hours -->
<section class="reveal py-16 bg-gray-50">
<section class="reveal py-16 bg-white">
<div class="container mx-auto px-4 max-w-2xl text-center">
<div class="bg-white rounded-2xl p-8 shadow-lg">
<div class="bg-gray-50 rounded-2xl p-8">
<h2 class="text-2xl font-bold mb-6 text-gray-800">เวลาทำการ</h2>
<div class="space-y-3">
<div class="flex justify-between items-center py-2 border-b">
<div class="flex justify-between items-center py-2 border-b border-gray-200">
<span class="text-gray-600">จันทร์ - ศุกร์</span>
<span class="font-bold text-orange-600">09:00 - 18:00 น.</span>
</div>
<div class="flex justify-between items-center py-2 border-b">
<div class="flex justify-between items-center py-2 border-b border-gray-200">
<span class="text-gray-600">เสาร์</span>
<span class="font-bold text-orange-600">10:00 - 16:00 น.</span>
</div>