fix: replace emoji social media icons with SVG logos

- Replace emoji icons (📘🐦💼💬) with official SVG logos
- Update Facebook, Twitter/X, LinkedIn, and LINE icons
- Add aria-label accessibility attributes
- Apply to header top bar and footer sections
- Update Contact Us page with SVG icons

Icons used:
- Facebook: Official 'f' logo
- Twitter/X: X logo
- LinkedIn: 'in' logo
- LINE: LINE bubble logo
This commit is contained in:
Kunthawat Greethong
2026-03-11 15:06:19 +07:00
parent d4b51e2692
commit d0be40d80d
2 changed files with 78 additions and 14 deletions

View File

@@ -66,10 +66,30 @@ const { title = 'MoreminiMore - ที่ปรึกษาองค์กร AI
</a> </a>
</div> </div>
<div class="flex gap-3"> <div class="flex gap-3">
<a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition text-xl">📘</a> <!-- Facebook -->
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition text-xl">🐦</a> <a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition" aria-label="Facebook">
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition text-xl">💼</a> <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<a href="#" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition text-xl">💬</a> <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>
<!-- Twitter / X -->
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition" aria-label="Twitter">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition" aria-label="LinkedIn">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<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>
<!-- LINE -->
<a href="#" target="_blank" rel="noopener noreferrer" class="hover:text-primary transition" aria-label="LINE">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M20.447 12.073c0-4.555-4.388-8.252-9.803-8.252-5.417 0-9.805 3.697-9.805 8.252 0 4.088 3.728 7.494 8.724 8.154.344.073.812.228.93.518.107.263.07.671.033.94l-.152.893c-.045.263-.221 1.034.958.564 1.183-.468 6.388-3.748 8.746-6.406 1.656-1.823 2.375-3.223 2.375-4.663h-.006zm-6.323 2.748c-.492.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.184-.896.476-1.21a1.665 1.665 0 011.213-.512c.487 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.186.898-.478 1.21a1.666 1.666 0 01-1.21.518zm-3.261 0c-.493.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.183-.896.476-1.21a1.665 1.665 0 011.213-.512c.486 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.187.898-.478 1.21a1.666 1.666 0 01-1.21.518zm-3.238 0c-.493.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.183-.896.476-1.21a1.665 1.665 0 011.213-.512c.486 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.187.898-.478 1.21a1.666 1.666 0 01-1.21.518z"/>
</svg>
</a>
</div> </div>
</div> </div>
</div> </div>
@@ -137,13 +157,34 @@ const { title = 'MoreminiMore - ที่ปรึกษาองค์กร AI
width="180" width="180"
height="45" height="45"
/> />
<p class="text-gray-600 text-sm"> <p class="text-gray-700 text-sm">
ที่ปรึกษาองค์กร AI เพิ่มยอดขายด้วยข้อมูล ที่ปรึกษาองค์กร AI เพิ่มยอดขายด้วยข้อมูล
</p> </p>
<div class="mt-4 flex gap-3"> <div class="mt-4 flex gap-3">
<a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition text-2xl">📘</a> <!-- Facebook -->
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition text-2xl">🐦</a> <a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition" aria-label="Facebook">
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition text-2xl">💼</a> <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<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>
<!-- Twitter / X -->
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition" aria-label="Twitter">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition" aria-label="LinkedIn">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<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>
<!-- LINE -->
<a href="#" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-accent-blue transition" aria-label="LINE">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M20.447 12.073c0-4.555-4.388-8.252-9.803-8.252-5.417 0-9.805 3.697-9.805 8.252 0 4.088 3.728 7.494 8.724 8.154.344.073.812.228.93.518.107.263.07.671.033.94l-.152.893c-.045.263-.221 1.034.958.564 1.183-.468 6.388-3.748 8.746-6.406 1.656-1.823 2.375-3.223 2.375-4.663h-.006zm-6.323 2.748c-.492.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.184-.896.476-1.21a1.665 1.665 0 011.213-.512c.487 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.186.898-.478 1.21a1.666 1.666 0 01-1.21.518zm-3.261 0c-.493.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.183-.896.476-1.21a1.665 1.665 0 011.213-.512c.486 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.187.898-.478 1.21a1.666 1.666 0 01-1.21.518zm-3.238 0c-.493.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.183-.896.476-1.21a1.665 1.665 0 011.213-.512c.486 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.187.898-.478 1.21a1.666 1.666 0 01-1.21.518z"/>
</svg>
</a>
</div> </div>
</div> </div>

View File

@@ -33,20 +33,43 @@ import Layout from '../layouts/Layout.astro'
</div> </div>
</div> </div>
<div class="flex items-start gap-4"> <div class="flex items-start gap-4">
<div class="flex-shrink-0 w-12 h-12 bg-primary rounded-full flex items-center justify-center text-2xl">💬</div> <div class="flex-shrink-0 w-12 h-12 bg-primary rounded-full flex items-center justify-center">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M20.447 12.073c0-4.555-4.388-8.252-9.803-8.252-5.417 0-9.805 3.697-9.805 8.252 0 4.088 3.728 7.494 8.724 8.154.344.073.812.228.93.518.107.263.07.671.033.94l-.152.893c-.045.263-.221 1.034.958.564 1.183-.468 6.388-3.748 8.746-6.406 1.656-1.823 2.375-3.223 2.375-4.663h-.006zm-6.323 2.748c-.492.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.184-.896.476-1.21a1.665 1.665 0 011.213-.512c.487 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.186.898-.478 1.21a1.666 1.666 0 01-1.21.518zm-3.261 0c-.493.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.183-.896.476-1.21a1.665 1.665 0 011.213-.512c.486 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.187.898-.478 1.21a1.666 1.666 0 01-1.21.518zm-3.238 0c-.493.003-.912-.24-1.213-.558a1.66 1.66 0 01-.476-1.17c0-.458.183-.896.476-1.21a1.665 1.665 0 011.213-.512c.486 0 .912.238 1.21.558a1.683 1.683 0 01.478 1.164c0 .463-.187.898-.478 1.21a1.666 1.666 0 01-1.21.518z"/>
</svg>
</div>
<div> <div>
<h3 class="font-bold mb-1">Line</h3> <h3 class="font-bold mb-1">Line</h3>
<a href="#" class="text-gray-700 hover:text-primary transition">@moreminimore</a> <a href="#" class="text-gray-700 hover:text-primary transition">@moreminimore</a>
</div> </div>
</div> </div>
<div class="flex items-start gap-4"> <div class="flex items-start gap-4">
<div class="flex-shrink-0 w-12 h-12 bg-primary rounded-full flex items-center justify-center text-2xl">🌐</div> <div class="flex-shrink-0 w-12 h-12 bg-primary rounded-full flex items-center justify-center">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"/>
</svg>
</div>
<div> <div>
<h3 class="font-bold mb-1">Social Media</h3> <h3 class="font-bold mb-1">Social Media</h3>
<div class="flex gap-4 mt-2"> <div class="flex gap-3 mt-2">
<a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-700 hover:text-primary transition">Facebook</a> <!-- Facebook -->
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-700 hover:text-primary transition">Twitter</a> <a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-700 hover:text-primary transition" aria-label="Facebook">
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-700 hover:text-primary transition">LinkedIn</a> <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<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>
<!-- Twitter / X -->
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-700 hover:text-primary transition" aria-label="Twitter">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-700 hover:text-primary transition" aria-label="LinkedIn">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<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>
</div> </div>
</div> </div>
</div> </div>