Initial commit: MoreminiMore new Astro website with PDPA compliance
This commit is contained in:
27
src/components/Breadcrumbs.astro
Normal file
27
src/components/Breadcrumbs.astro
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
interface Props {
|
||||
items?: Array<{ label: string; href?: string }>;
|
||||
}
|
||||
|
||||
const { items = [] } = Astro.props;
|
||||
---
|
||||
|
||||
{items.length > 0 && (
|
||||
<nav class="container mx-auto px-4 py-4" aria-label="Breadcrumb">
|
||||
<ol class="flex items-center gap-2 text-sm">
|
||||
<li>
|
||||
<a href="/" class="text-gray-500 hover:text-gray-700 transition">หน้าแรก</a>
|
||||
</li>
|
||||
{items.map((item, index) => (
|
||||
<li class="flex items-center gap-2">
|
||||
<span class="text-gray-400">/</span>
|
||||
{item.href && index < items.length - 1 ? (
|
||||
<a href={item.href} class="text-gray-500 hover:text-gray-700 transition">{item.label}</a>
|
||||
) : (
|
||||
<span class="text-gray-900 font-medium">{item.label}</span>
|
||||
)}
|
||||
</li>
|
||||
))}
|
||||
</ol>
|
||||
</nav>
|
||||
)}
|
||||
56
src/components/consent/CookieBanner.astro
Normal file
56
src/components/consent/CookieBanner.astro
Normal file
@@ -0,0 +1,56 @@
|
||||
<div id="cookie-banner" class="fixed bottom-0 left-0 right-0 bg-white shadow-2xl z-[100] border-t-4 border-primary transform translate-y-full transition-transform duration-500">
|
||||
<div class="container mx-auto px-4 py-6">
|
||||
<div class="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
|
||||
<div class="flex-1">
|
||||
<h3 class="font-bold text-lg mb-2 text-black">🍪 เราใช้คุกกี้</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
เราใช้คุกกี้เพื่อปรับปรุงประสบการณ์การใช้งานเว็บไซต์และวิเคราะห์การเข้าชม คุณสามารถเลือกปฏิเสธคุกกี้ที่ไม่จำเป็นได้ <a href="/privacy-policy" class="text-primary hover:underline">อ่านนโยบายความเป็นส่วนตัว</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="flex gap-3 flex-shrink-0">
|
||||
<button id="reject-cookies" class="px-6 py-3 rounded-full border-2 border-gray-300 text-gray-700 font-medium hover:bg-gray-100 transition-all">
|
||||
ปฏิเสธทั้งหมด
|
||||
</button>
|
||||
<button id="accept-cookies" class="px-6 py-3 rounded-full bg-black text-primary font-bold hover:bg-gray-800 transition-all">
|
||||
ยอมรับทั้งหมด
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const banner = document.getElementById('cookie-banner');
|
||||
const acceptBtn = document.getElementById('accept-cookies');
|
||||
const rejectBtn = document.getElementById('reject-cookies');
|
||||
|
||||
function showBanner() {
|
||||
banner?.classList.remove('translate-y-full');
|
||||
banner?.classList.add('translate-y-0');
|
||||
}
|
||||
|
||||
function hideBanner() {
|
||||
banner?.classList.remove('translate-y-0');
|
||||
banner?.classList.add('translate-y-full');
|
||||
}
|
||||
|
||||
function saveConsent(preferences: { necessary: boolean; analytics: boolean; marketing: boolean }) {
|
||||
localStorage.setItem('consent-preferences', JSON.stringify(preferences));
|
||||
hideBanner();
|
||||
window.location.reload();
|
||||
}
|
||||
|
||||
const existingConsent = localStorage.getItem('consent-preferences');
|
||||
|
||||
if (!existingConsent) {
|
||||
setTimeout(showBanner, 1000);
|
||||
}
|
||||
|
||||
acceptBtn?.addEventListener('click', () => {
|
||||
saveConsent({ necessary: true, analytics: true, marketing: true });
|
||||
});
|
||||
|
||||
rejectBtn?.addEventListener('click', () => {
|
||||
saveConsent({ necessary: true, analytics: false, marketing: false });
|
||||
});
|
||||
</script>
|
||||
1
src/env.d.ts
vendored
Normal file
1
src/env.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/// <reference path="../.astro/types.d.ts" />
|
||||
283
src/layouts/Layout.astro
Normal file
283
src/layouts/Layout.astro
Normal file
@@ -0,0 +1,283 @@
|
||||
---
|
||||
import '../styles/global.css'
|
||||
import CookieBanner from '../components/consent/CookieBanner.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
const { title = 'MoreminiMore - ที่ปรึกษาองค์กร AI เพิ่มยอดขายด้วยข้อมูล', description = 'เราให้คำปรึกษาด้าน AI Transformation กลยุทธ์การตลาดโดยใช้ข้อมูลเป็นพื้นฐาน พัฒนาศักยภาพของบุคลากรให้สูงขึ้น เพื่อเพิ่มยอดขายให้กับลูกค้าให้มากที่สุด' } = Astro.props;
|
||||
|
||||
const currentPath = Astro.url.pathname;
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
<html lang="th">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content={description} />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<link rel="canonical" href={Astro.url.href} />
|
||||
|
||||
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
||||
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin" />
|
||||
<meta http-equiv="Permissions-Policy" content="camera=(), microphone=(), geolocation=()" />
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://umami.moreminimore.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: https:; connect-src 'self' https://umami.moreminimore.com; frame-src 'none';" />
|
||||
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/branding/favicon-32.png" />
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/branding/favicon-192.png" />
|
||||
<link rel="apple-touch-icon" href="/branding/apple-touch-icon.png" />
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet" />
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Kanit';
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url('https://www.moreminimore.com/wp-content/uploads/2022/03/Kanit-400.woff') format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Kanit';
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url('https://www.moreminimore.com/wp-content/uploads/2022/03/Kanit-700.woff') format('woff');
|
||||
}
|
||||
</style>
|
||||
|
||||
<title>{title}</title>
|
||||
<meta property="og:title" content={title} />
|
||||
<meta property="og:description" content={description} />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="/branding/logo-long.png" />
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
</head>
|
||||
<body class="flex flex-col min-h-screen">
|
||||
<header class="bg-primary sticky top-0 z-50 shadow-lg">
|
||||
<div class="bg-black text-white py-2">
|
||||
<div class="container mx-auto px-4 flex flex-wrap justify-center items-center text-sm">
|
||||
<div class="flex gap-4">
|
||||
<a href="mailto:contact@moreminimore.com" class="hover:text-primary transition">📧 contact@moreminimore.com</a>
|
||||
<a href="tel:0809955945" class="hover:text-primary transition">📞 080-995-5945</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container mx-auto px-4 py-4">
|
||||
<div class="flex justify-between items-center">
|
||||
<a href="/" class="flex-shrink-0">
|
||||
<img src="/branding/logo-long-black.png" alt="MoreminiMore Logo" class="h-12 w-auto" width="200" height="50" />
|
||||
</a>
|
||||
|
||||
<nav class="hidden md:flex gap-6 items-center">
|
||||
<a href="/" class={`hover:text-gray-600 transition font-medium ${currentPath === '/' ? 'text-gray-600' : ''}`}>หน้าแรก</a>
|
||||
<a href="/about-us" class={`hover:text-gray-600 transition font-medium ${currentPath === '/about-us' ? 'text-gray-600' : ''}`}>เกี่ยวกับเรา</a>
|
||||
|
||||
<div class="relative group">
|
||||
<button class="hover:text-gray-600 transition font-medium flex items-center gap-1">
|
||||
บริการ
|
||||
<svg class="w-4 h-4 transition group-hover:rotate-180" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
|
||||
</svg>
|
||||
</button>
|
||||
<div class="absolute left-0 mt-2 w-64 bg-white rounded-lg shadow-xl opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-200 z-50">
|
||||
<div class="py-2">
|
||||
<a href="/tech-consult" class="flex items-center gap-3 px-4 py-2 hover:bg-gray-50 transition">
|
||||
<svg class="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
|
||||
<span>Tech Consult</span>
|
||||
</a>
|
||||
<a href="/web-development" class="flex items-center gap-3 px-4 py-2 hover:bg-gray-50 transition">
|
||||
<svg class="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/></svg>
|
||||
<span>AI-Enhanced Website</span>
|
||||
</a>
|
||||
<a href="/marketing-automation" class="flex items-center gap-3 px-4 py-2 hover:bg-gray-50 transition">
|
||||
<svg class="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/></svg>
|
||||
<span>Marketing Automation</span>
|
||||
</a>
|
||||
<a href="/ai-automation" class="flex items-center gap-3 px-4 py-2 hover:bg-gray-50 transition">
|
||||
<svg class="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/></svg>
|
||||
<span>AI Automation</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a href="/portfolio" class={`hover:text-gray-600 transition font-medium ${currentPath === '/portfolio' ? 'text-gray-600' : ''}`}>ผลงาน</a>
|
||||
<a href="/faq" class={`hover:text-gray-600 transition font-medium ${currentPath === '/faq' ? 'text-gray-600' : ''}`}>FAQ</a>
|
||||
<a href="/blog" class={`hover:text-gray-600 transition font-medium ${currentPath === '/blog' ? 'text-gray-600' : ''}`}>บทความ</a>
|
||||
<a href="/contact-us" class={`hover:text-gray-600 transition font-medium ${currentPath === '/contact-us' ? 'text-gray-600' : ''}`}>ติดต่อเรา</a>
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-6 py-3 rounded-full font-bold hover:bg-black/80 transition-all duration-300 hover:scale-105 flex items-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/>
|
||||
</svg>
|
||||
โทรเลย
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
<button class="md:hidden text-black" id="mobile-menu-btn">
|
||||
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="md:hidden hidden" id="mobile-menu">
|
||||
<div class="flex flex-col gap-4 mt-4 pb-4">
|
||||
<a href="/" class="hover:text-gray-600 transition font-medium">หน้าแรก</a>
|
||||
<a href="/about-us" class="hover:text-gray-600 transition font-medium">เกี่ยวกับเรา</a>
|
||||
|
||||
<details class="group">
|
||||
<summary class="hover:text-gray-600 transition font-medium cursor-pointer flex items-center justify-between">
|
||||
บริการ
|
||||
<svg class="w-4 h-4 transition group-open:rotate-180" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="ml-4 mt-2 flex flex-col gap-2">
|
||||
<a href="/tech-consult" class="flex items-center gap-2 text-sm hover:text-gray-600 transition">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
|
||||
Tech Consult
|
||||
</a>
|
||||
<a href="/web-development" class="flex items-center gap-2 text-sm hover:text-gray-600 transition">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/></svg>
|
||||
AI-Enhanced Website
|
||||
</a>
|
||||
<a href="/marketing-automation" class="flex items-center gap-2 text-sm hover:text-gray-600 transition">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/></svg>
|
||||
Marketing Automation
|
||||
</a>
|
||||
<a href="/ai-automation" class="flex items-center gap-2 text-sm hover:text-gray-600 transition">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/></svg>
|
||||
AI Automation
|
||||
</a>
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<a href="/portfolio" class="hover:text-gray-600 transition font-medium">ผลงาน</a>
|
||||
<a href="/faq" class="hover:text-gray-600 transition font-medium">FAQ</a>
|
||||
<a href="/blog" class="hover:text-gray-600 transition font-medium">บทความ</a>
|
||||
<a href="/contact-us" class="hover:text-gray-600 transition font-medium">ติดต่อเรา</a>
|
||||
<a href="tel:0809955945" class="btn-brand text-center flex items-center justify-center gap-2">
|
||||
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>
|
||||
โทรเลย
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="flex-grow">
|
||||
<slot />
|
||||
</main>
|
||||
|
||||
<footer class="bg-white text-black py-12 border-t-4 border-primary">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="grid md:grid-cols-4 gap-8">
|
||||
<div>
|
||||
<img src="/branding/logo-long.png" alt="MoreminiMore Logo" class="h-10 w-auto mb-4" width="180" height="45" />
|
||||
<p class="text-gray-700 text-sm">ที่ปรึกษาองค์กร AI เพิ่มยอดขายด้วยข้อมูล</p>
|
||||
<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-gray-900 transition" aria-label="Facebook">
|
||||
<img src="/icons/social/facebook.svg" alt="Facebook" class="w-6 h-6" />
|
||||
</a>
|
||||
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-gray-900 transition" aria-label="Twitter">
|
||||
<img src="/icons/social/x.svg" alt="X (Twitter)" class="w-6 h-6" />
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-gray-900 transition" aria-label="LinkedIn">
|
||||
<img src="/icons/social/linkedin.svg" alt="LinkedIn" class="w-6 h-6" />
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-gray-900 transition" aria-label="LINE">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-6 h-6" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="font-bold mb-4 text-lg">บริการ</h3>
|
||||
<ul class="space-y-2 text-sm text-gray-700">
|
||||
<li><a href="/tech-consult" class="hover:text-gray-900 transition">Tech Consult</a></li>
|
||||
<li><a href="/web-development" class="hover:text-gray-900 transition">AI-Enhanced Website</a></li>
|
||||
<li><a href="/marketing-automation" class="hover:text-gray-900 transition">Marketing Automation</a></li>
|
||||
<li><a href="/ai-automation" class="hover:text-gray-900 transition">AI Automation</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="font-bold mb-4 text-lg">ลิงก์</h3>
|
||||
<ul class="space-y-2 text-sm text-gray-700">
|
||||
<li><a href="/about-us" class="hover:text-gray-900 transition">เกี่ยวกับเรา</a></li>
|
||||
<li><a href="/contact-us" class="hover:text-gray-900 transition">ติดต่อเรา</a></li>
|
||||
<li><a href="/blog" class="hover:text-gray-900 transition">บทความ</a></li>
|
||||
<li><a href="/privacy-policy" class="hover:text-gray-900 transition">นโยบายความเป็นส่วนตัว</a></li>
|
||||
<li><a href="/terms-and-conditions" class="hover:text-gray-900 transition">ข้อกำหนดและเงื่อนไข</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="font-bold mb-4 text-lg">ติดต่อ</h3>
|
||||
<ul class="space-y-3 text-sm text-gray-700">
|
||||
<li class="flex items-center gap-2">
|
||||
<span>📞</span>
|
||||
<a href="tel:0809955945" class="hover:text-gray-900 transition">080-995-5945</a>
|
||||
</li>
|
||||
<li class="flex items-center gap-2">
|
||||
<span>📧</span>
|
||||
<a href="mailto:contact@moreminimore.com" class="hover:text-gray-900 transition">contact@moreminimore.com</a>
|
||||
</li>
|
||||
<li class="flex items-center gap-2">
|
||||
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/></svg>
|
||||
<span>จ-ศ: 9:00 - 18:00 น.</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="border-t border-gray-200 mt-8 pt-8 text-center text-sm text-gray-600">
|
||||
<p>© {new Date().getFullYear()} MoreminiMore Co.,Ltd. สงวนลิขสิทธิ์</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<CookieBanner />
|
||||
|
||||
<script is:inline>
|
||||
const consent = JSON.parse(localStorage.getItem('consent-preferences') || 'null');
|
||||
if (consent && consent.analytics === true) {
|
||||
const script = document.createElement('script');
|
||||
script.defer = true;
|
||||
script.src = 'https://umami.moreminimore.com/script.js';
|
||||
script.setAttribute('data-website-id', 'b2e87a6c-0b64-43c8-bb09-e406ffca0af1');
|
||||
script.setAttribute('data-host-url', 'https://umami.moreminimore.com');
|
||||
document.head.appendChild(script);
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
const menuBtn = document.getElementById('mobile-menu-btn');
|
||||
const mobileMenu = document.getElementById('mobile-menu');
|
||||
|
||||
if (menuBtn && mobileMenu) {
|
||||
menuBtn.addEventListener('click', () => {
|
||||
mobileMenu.classList.toggle('hidden');
|
||||
});
|
||||
}
|
||||
|
||||
const revealElements = document.querySelectorAll('.reveal, .reveal-left, .reveal-right, .reveal-scale');
|
||||
|
||||
const revealObserver = new IntersectionObserver((entries) => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
entry.target.classList.add('visible');
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
|
||||
|
||||
revealElements.forEach(el => revealObserver.observe(el));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
230
src/pages/about-us.astro
Normal file
230
src/pages/about-us.astro
Normal file
@@ -0,0 +1,230 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
|
||||
const schemaData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "บริษัท มอร์มินิมอร์ จำกัด",
|
||||
"description": "บริษัท มอร์มินิมอร์ จำกัด ให้บริการรับทำเว็บไซต์ SEO และ AI Chatbot สำหรับ SMEs ไทย",
|
||||
"url": "https://www.moreminimore.com",
|
||||
"telephone": "0809955945",
|
||||
"email": "contact@moreminimore.com",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "53 หมู่ 1 ต.บ้านแพ้ว อ.บ้านแพ้ว",
|
||||
"addressLocality": "สมุทรสาคร",
|
||||
"postalCode": "74120",
|
||||
"addressCountry": "TH"
|
||||
},
|
||||
"foundingDate": "2020",
|
||||
"sameAs": [
|
||||
"https://www.facebook.com/moreminimore",
|
||||
"https://twitter.com/moreminimore",
|
||||
"https://www.linkedin.com/company/moreminimore"
|
||||
]
|
||||
}
|
||||
---
|
||||
|
||||
<Layout title="เกี่ยวกับเรา | บริษัท มอร์มินิมอร์ จำกัด - รับทำเว็บไซต์ SEO AI Chatbot">
|
||||
<script type="application/ld+json" set:html={JSON.stringify(schemaData)} />
|
||||
|
||||
<section id="hero" class="reveal relative overflow-hidden min-h-[50vh] flex items-center">
|
||||
<div class="absolute inset-0 bg-gradient-to-br from-purple-600/80 via-purple-500/70 to-blue-600/80">
|
||||
<div class="absolute top-20 left-10 w-72 h-72 bg-white/10 rounded-full blur-3xl animate-float-1"></div>
|
||||
<div class="absolute bottom-20 right-10 w-96 h-96 bg-blue-400/10 rounded-full blur-3xl animate-float-2"></div>
|
||||
<div class="absolute top-1/3 left-1/4 w-48 h-48 bg-white/5 rounded-full blur-2xl animate-float-3"></div>
|
||||
<div class="absolute bottom-1/3 right-1/4 w-64 h-64 bg-purple-300/10 rounded-full blur-2xl animate-float-1" style="animation-delay: 1.5s;"></div>
|
||||
</div>
|
||||
|
||||
<div class="absolute inset-0 overflow-hidden pointer-events-none">
|
||||
<div class="absolute top-1/4 left-[10%] w-3 h-3 bg-white/20 rounded-full animate-float-dot-1"></div>
|
||||
<div class="absolute top-1/3 left-[80%] w-2 h-2 bg-white/20 rounded-full animate-float-dot-2"></div>
|
||||
<div class="absolute top-2/3 left-[20%] w-4 h-4 bg-white/20 rounded-full animate-float-dot-3"></div>
|
||||
</div>
|
||||
|
||||
<div class="absolute inset-0 opacity-[0.03]" style="background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px); background-size: 50px 50px;"></div>
|
||||
|
||||
<div class="container mx-auto px-4 relative z-10 py-20">
|
||||
<div class="max-w-4xl mx-auto text-center">
|
||||
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 text-white leading-tight animate-fade-in-up">
|
||||
เกี่ยวกับเรา
|
||||
</h1>
|
||||
<p class="text-lg md:text-xl text-white/80 max-w-2xl mx-auto animate-fade-in-up" style="animation-delay: 0.2s;">
|
||||
มอร์มินิมอร์ — พาร์ทเนอร์ด้าน IT และ AI ที่พร้อมเติบโตไปกับคุณ
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="vision" class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<div class="text-center mb-12">
|
||||
<span class="inline-flex items-center gap-2 px-4 py-1 bg-purple-100 text-purple-700 rounded-full text-sm font-medium mb-4">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
|
||||
วิสัยทัศน์
|
||||
</span>
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
เติบโตไปด้วยกัน
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-3xl p-8 md:p-12 text-center">
|
||||
<p class="text-xl md:text-2xl text-gray-700 leading-relaxed">
|
||||
"เราเชื่อว่าความสำเร็จของลูกค้าคือความสำเร็จของเรา<br/>
|
||||
<span class="text-black font-bold">เมื่อธุรกิจของคุณเติบโต</span> เราก็เติบโตไปด้วยกัน"
|
||||
</p>
|
||||
<p class="text-gray-600 mt-6">
|
||||
ความสำเร็จที่แท้จริงไม่ใช่แค่ตัวเลข แต่คือการเห็นผลงานที่เกิดขึ้นจริงของลูกค้า
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="values" class="reveal py-24 bg-gray-50">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="text-center mb-12 max-w-2xl mx-auto">
|
||||
<span class="inline-flex items-center gap-2 px-4 py-1 bg-purple-100 text-purple-700 rounded-full text-sm font-medium mb-4">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3v4M3 5h4M6 17v4m-2-2h4m5-16l2.286 6.857L21 12l-5.714 2.143L13 21l-2.286-6.857L5 12l5.714-2.143L13 3z"/></svg>
|
||||
ค่านิยม
|
||||
</span>
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
สิ่งที่เรายึดมั่น
|
||||
</h2>
|
||||
<p class="text-gray-600">
|
||||
เรามุ่งเน้นที่ผลลัพธ์ที่จับต้องได้ ไม่ใช่แค่ตัวเลขบนหน้าจอ
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6 max-w-5xl mx-auto">
|
||||
<div class="bg-white rounded-3xl p-8 hover:shadow-2xl hover:-translate-y-2 transition-all duration-300">
|
||||
<div class="w-16 h-16 bg-purple-500 rounded-2xl flex items-center justify-center mb-6">
|
||||
<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="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black">เน้นผลงานจริง</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
เราวัดความสำเร็จจากยอดขายที่เพิ่มขึ้นของลูกค้า ไม่ใช่แค่คะแนน SEO หรือจำนวนการเข้าชม
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-3xl p-8 hover:shadow-2xl hover:-translate-y-2 transition-all duration-300">
|
||||
<div class="w-16 h-16 bg-purple-500 rounded-2xl flex items-center justify-center mb-6">
|
||||
<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="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/></svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black">เป็นพาร์ทเนอร์</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
เราไม่ได้มองลูกค้าเป็นแค่ผู้จ้าง แต่มองเป็นพาร์ทเนอร์ที่จะเติบโตไปด้วยกันในระยะยาว
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-3xl p-8 hover:shadow-2xl hover:-translate-y-2 transition-all duration-300">
|
||||
<div class="w-16 h-16 bg-purple-500 rounded-2xl flex items-center justify-center mb-6">
|
||||
<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="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"/></svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black">คุ้มค่าที่สุด</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
ออกแบบโซลูชันให้เหมาะกับงบประมาณของคุณ เริ่มต้นง่าย ไม่ต้องลงทุนมาก
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-3xl p-8 hover:shadow-2xl hover:-translate-y-2 transition-all duration-300">
|
||||
<div class="w-16 h-16 bg-purple-500 rounded-2xl flex items-center justify-center mb-6">
|
||||
<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="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black">ทำงานเร็ว</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
เข้าใจว่าธุรกิจต้องการผลลัพธ์เร็ว ทำงานตรงเวลา ไม่ผัดวันประงัน
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-3xl p-8 hover:shadow-2xl hover:-translate-y-2 transition-all duration-300">
|
||||
<div class="w-16 h-16 bg-purple-500 rounded-2xl flex items-center justify-center mb-6">
|
||||
<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="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/></svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black">ดูแลต่อเนื่อง</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
ไม่ทิ้งหลังขาย พร้อมสนับสนุนและปรับปรุงระบบให้ตลอดเวลา
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-3xl p-8 hover:shadow-2xl hover:-translate-y-2 transition-all duration-300">
|
||||
<div class="w-16 h-16 bg-purple-500 rounded-2xl flex items-center justify-center mb-6">
|
||||
<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="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/></svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black">โปร่งใส</h3>
|
||||
<p class="text-gray-600 text-sm">
|
||||
ราคาชัดเจน ไม่มีค่าใช้จ่ายซ่อนเร้น รายงานผลตรง ชัดเจน
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<h2 class="text-3xl font-bold text-center mb-12 text-black">
|
||||
ทำไมเลือกเรา?
|
||||
</h2>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-6">
|
||||
<div class="bg-white p-6 rounded-2xl shadow-sm hover:shadow-lg transition-shadow border border-gray-100">
|
||||
<div class="w-12 h-12 bg-purple-500 rounded-xl flex items-center justify-center mb-4">
|
||||
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
|
||||
</div>
|
||||
<h3 class="font-bold mb-2 text-black">เน้นผลลัพธ์</h3>
|
||||
<p class="text-gray-600 text-sm">เราวัดผลทุกอย่าง และมุ่งเน้นให้เห็นผลจริงในการเพิ่มยอดขาย</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white p-6 rounded-2xl shadow-sm hover:shadow-lg transition-shadow border border-gray-100">
|
||||
<div class="w-12 h-12 bg-purple-500 rounded-xl flex items-center justify-center mb-4">
|
||||
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24"><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"/></svg>
|
||||
</div>
|
||||
<h3 class="font-bold mb-2 text-black">ราคาเหมาะสม</h3>
|
||||
<p class="text-gray-600 text-sm">ออกแบบมาให้ SMEs สามารถเริ่มต้นได้ง่าย ไม่ต้องลงทุนมาก</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white p-6 rounded-2xl shadow-sm hover:shadow-lg transition-shadow border border-gray-100">
|
||||
<div class="w-12 h-12 bg-purple-500 rounded-xl flex items-center justify-center mb-4">
|
||||
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/></svg>
|
||||
</div>
|
||||
<h3 class="font-bold mb-2 text-black">ดูแลต่อเนื่อง</h3>
|
||||
<p class="text-gray-600 text-sm">ไม่ทิ้งหลังขาย พร้อมอบรมและสนับสนุนตลอดการใช้งาน</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-white p-6 rounded-2xl shadow-sm hover:shadow-lg transition-shadow border border-gray-100">
|
||||
<div class="w-12 h-12 bg-purple-500 rounded-xl flex items-center justify-center mb-4">
|
||||
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
|
||||
</div>
|
||||
<h3 class="font-bold mb-2 text-black">ทำงานเร็ว</h3>
|
||||
<p class="text-gray-600 text-sm">เข้าใจว่าธุรกิจต้องการผลลัพธ์เร็ว ทำงานตรงเวลา ไม่ผัดวัน</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="reveal py-20 bg-primary">
|
||||
<div class="container mx-auto px-4 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
พร้อมร่วมงานกับคุณแล้วหรือยัง?
|
||||
</h2>
|
||||
<p class="text-black/70 mb-8 max-w-xl mx-auto">
|
||||
เริ่มต้นง่ายๆ แค่โทรหาหรือเพิ่ม LINE มาคุยกันก่อน ไม่มีค่าใช้จ่าย!
|
||||
</p>
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/>
|
||||
</svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
144
src/pages/ai-automation.astro
Normal file
144
src/pages/ai-automation.astro
Normal file
@@ -0,0 +1,144 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
|
||||
const schemaData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Service",
|
||||
"name": "AI Automation - ระบบอัตโนมัติด้วย AI",
|
||||
"description": "ระบบอัตโนมัติทุกอย่าง ตอบคำถาม ส่งข้อมูล บันทึกออร์เดอร์ 24/7",
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "บริษัท มอร์มินิมอร์ จำกัด"
|
||||
}
|
||||
}
|
||||
---
|
||||
|
||||
<Layout title="ระบบ AI Automation | อัตโนมัติด้วย AI | MoreminiMore">
|
||||
<script type="application/ld+json" set:html={JSON.stringify(schemaData)} />
|
||||
<Breadcrumbs items={[{ label: "AI Automation" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<span class="inline-block px-4 py-1 bg-primary/20 text-black rounded-full text-sm font-medium mb-4">
|
||||
บริการ
|
||||
</span>
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-6 text-black">
|
||||
AI Automation
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600 mb-8">
|
||||
ระบบอัตโนมัติทุกอย่าง ตอบคำถาม ส่งข้อมูล บันทึกออร์เดอร์ 24/7
|
||||
</p>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<div class="bg-gray-50 rounded-3xl p-8">
|
||||
<h3 class="text-xl font-bold mb-4 text-black">🎯 ทำไมต้อง AI Automation?</h3>
|
||||
<ul class="space-y-3 text-gray-600">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ทำงานแทนคุณได้ 24 ชั่วโมง
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ไม่ต้องจ้างพนักงานเพิ่ม
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ลดข้อผิดพลาดจากคน
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ปรับขนาดได้ตามความต้องการ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เพิ่มความพึงพอใจลูกค้า
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-black rounded-3xl p-8 text-white">
|
||||
<h3 class="text-xl font-bold mb-4 text-primary">🚀 AI ทำอะไรได้บ้าง?</h3>
|
||||
<ul class="space-y-3 text-gray-300">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ตอบคำถามทั่วไปด้วย AI
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
บันทึกข้อมูลออร์เดอร์
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
สรุปรายงานอัตโนมัติ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
แจ้งเตือนทาง LINE/Email
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
วิเคราะห์ข้อมูลเชิงลึก
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 class="text-2xl font-bold mb-6 text-black">📋 AI Automation Solutions</h2>
|
||||
<div class="grid md:grid-cols-3 gap-6 mb-12">
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">🤖 AI Chatbot</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>• ตอบคำถาม 24/7</li>
|
||||
<li>• เชื่อมต่อหลายช่องทาง</li>
|
||||
<li>• ฝึกด้วยข้อมูลของคุณ</li>
|
||||
<li>• เรียนรู้และปรับตัว</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">📊 Auto Report</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>• สรุปข้อมูลรายวัน/สัปดาห์</li>
|
||||
<li>• ส่งอีเมลอัตโนมัติ</li>
|
||||
<li>• Dashboard สรุปผล</li>
|
||||
<li>• แจ้งเตือนผิดปกติ</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">🔄 Workflow Automation</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>• ตั้งค่าขั้นตอนอัตโนมัติ</li>
|
||||
<li>• เชื่อมต่อระบบหลายตัว</li>
|
||||
<li>• ลดงานซ้ำซ้อน</li>
|
||||
<li>• ประหยัดเวลา</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="reveal py-20 bg-primary">
|
||||
<div class="container mx-auto px-4 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
พร้อมเริ่มต้นแล้วหรือยัง?
|
||||
</h2>
|
||||
<p class="text-black/70 mb-8 max-w-xl mx-auto">
|
||||
ปรึกษาฟรี! เราพร้อมแนะนำโซลูชันที่เหมาะกับธุรกิจของคุณ
|
||||
</p>
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
99
src/pages/contact-us.astro
Normal file
99
src/pages/contact-us.astro
Normal file
@@ -0,0 +1,99 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
---
|
||||
|
||||
<Layout title="ติดต่อเรา | MoreminiMore">
|
||||
<Breadcrumbs items={[{ label: "ติดต่อเรา" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<div class="text-center mb-12">
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-4 text-black">
|
||||
ติดต่อเรา
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600">
|
||||
พร้อมให้คำปรึกษาฟรี! ติดต่อเราได้หลายช่องทาง
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<div class="bg-gray-50 rounded-3xl p-8">
|
||||
<h2 class="text-2xl font-bold mb-6 text-black">📞 โทรหาเรา</h2>
|
||||
<a href="tel:0809955945" class="text-3xl font-bold text-primary hover:text-primary/80 transition">
|
||||
080-995-5945
|
||||
</a>
|
||||
<p class="text-gray-600 mt-2">จันทร์ - ศุกร์ 9:00 - 18:00 น.</p>
|
||||
|
||||
<div class="mt-8">
|
||||
<h3 class="font-bold mb-3 text-black">📧 อีเมล</h3>
|
||||
<a href="mailto:contact@moreminimore.com" class="text-primary hover:underline">
|
||||
contact@moreminimore.com
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="mt-8">
|
||||
<h3 class="font-bold mb-3 text-black">📍 ที่อยู่</h3>
|
||||
<p class="text-gray-600">
|
||||
53 หมู่ 1 ต.บ้านแพ้ว อ.บ้านแพ้ว<br/>
|
||||
จ.สมุทรสาคร 74120
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-black rounded-3xl p-8 text-white">
|
||||
<h2 class="text-2xl font-bold mb-6 text-primary">💬 LINE</h2>
|
||||
<p class="text-gray-300 mb-6">
|
||||
เพิ่มเพื่อน LINE แล้วส่งข้อความมาได้เลย! ตอบกลับภายใน 24 ชั่วโมง
|
||||
</p>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-2 bg-primary text-black px-6 py-3 rounded-full font-bold hover:bg-primary/90 transition-all">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
|
||||
<div class="mt-8">
|
||||
<h3 class="font-bold mb-3">📱 Social Media</h3>
|
||||
<div class="flex gap-4">
|
||||
<a href="https://www.facebook.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-white hover:text-primary transition">
|
||||
<img src="/icons/social/facebook.svg" alt="Facebook" class="w-8 h-8" />
|
||||
</a>
|
||||
<a href="https://twitter.com/moreminimore" target="_blank" rel="noopener noreferrer" class="text-white hover:text-primary transition">
|
||||
<img src="/icons/social/x.svg" alt="X" class="w-8 h-8" />
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/moreminimore" target="_blank" rel="noopener noreferrer" class="text-white hover:text-primary transition">
|
||||
<img src="/icons/social/linkedin.svg" alt="LinkedIn" class="w-8 h-8" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-3xl p-8">
|
||||
<h2 class="text-2xl font-bold mb-6 text-black">✉️ ส่งข้อความ</h2>
|
||||
<form class="space-y-4">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">ชื่อของคุณ</label>
|
||||
<input type="text" class="w-full px-4 py-3 rounded-xl border border-gray-300 focus:ring-2 focus:ring-primary focus:border-transparent outline-none transition" placeholder="กรอกชื่อของคุณ" />
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">อีเมล</label>
|
||||
<input type="email" class="w-full px-4 py-3 rounded-xl border border-gray-300 focus:ring-2 focus:ring-primary focus:border-transparent outline-none transition" placeholder="your@email.com" />
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">เบอร์โทรศัพท์</label>
|
||||
<input type="tel" class="w-full px-4 py-3 rounded-xl border border-gray-300 focus:ring-2 focus:ring-primary focus:border-transparent outline-none transition" placeholder="081-xxx-xxxx" />
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">ข้อความ</label>
|
||||
<textarea rows="4" class="w-full px-4 py-3 rounded-xl border border-gray-300 focus:ring-2 focus:ring-primary focus:border-transparent outline-none transition resize-none" placeholder="กรอกข้อความของคุณ..."></textarea>
|
||||
</div>
|
||||
<button type="submit" class="w-full bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-800 transition-all">
|
||||
ส่งข้อความ
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
119
src/pages/faq.astro
Normal file
119
src/pages/faq.astro
Normal file
@@ -0,0 +1,119 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
---
|
||||
|
||||
<Layout title="คำถามที่พบบ่อย | FAQ | MoreminiMore">
|
||||
<Breadcrumbs items={[{ label: "FAQ" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4 max-w-3xl">
|
||||
<div class="text-center mb-12">
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-4 text-black">
|
||||
คำถามที่พบบ่อย
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600">
|
||||
คำถามที่ลูกค้ามักถามเราบ่อยๆ
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="space-y-4">
|
||||
<details class="reveal stagger-1 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>SMEs ขนาดเล็ก ใช้บริการของคุณได้ไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ได้แน่นอน! เราออกแบบบริการสำหรับ SMEs โดยเฉพาะ มีทั้ง Package เล็กสำหรับธุรกิจเริ่มต้น และโซลูชันใหญ่สำหรับธุรกิจที่กำลังขยาย เราเข้าใจว่าธุรกิจขนาดเล็กต้องการโซลูชันที่คุ้มค่าและเริ่มต้นได้ง่าย
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-2 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>ต้องใช้ความรู้ทางเทคนิคไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ไม่จำเป็น! เราดูแลทุกอย่างตั้งแต่ต้นจนจบ และอบรมทีมของคุณให้ใช้งานระบบได้อย่างมั่นใจ คุณไม่จำเป็นต้องมีความรู้ด้านเทคนิคใดๆ เลย
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-3 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>ใช้เวลานานแค่ไหนถึงจะเห็นผล?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ขึ้นอยู่กับบริการ: เว็บไซต์ใช้เวลา 2-6 สัปดาห์, Marketing Automation เห็นผลใน 1-3 เดือน, SEO ใช้เวลา 3-6 เดือนในการติดอันดับ ขึ้นอยู่กับความซับซ้อนและความพร้อมของเนื้อหา
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-4 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>มีบริการหลังการขายไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
มี! เราดูแลหลังการติดตั้ง อบรมการใช้งาน และพร้อมให้คำปรึกษาเมื่อคุณต้องการ เราไม่ทิ้งลูกค้าหลังขาย และพร้อมสนับสนุนคุณตลอด
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-5 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>ราคาเริ่มต้นที่เท่าไหร่?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
เรามี Package หลากหลายตามงบประมาณ เริ่มต้นที่หลักพันบาทสำหรับเว็บไซต์พื้นฐาน ไปจนถึงโซลูชันครบวงจรสำหรับธุรกิจที่ต้องการระบบที่ซับซ้อน ติดต่อเราเพื่อรับ Quote ฟรี
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-6 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>สามารถต่อยอดเพิ่มเติมได้ไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ได้แน่นอน! ระบบที่เราสร้างสามารถต่อยอดเพิ่มเติมได้เสมอ ไม่ว่าจะเป็นการเพิ่มฟีเจอร์ใหม่ ขยายระบบ หรือเชื่อมต่อกับระบบอื่นๆ เราออกแบบให้ยืดหยุ่นและขยายได้
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-7 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>มีสัญญาประกันไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
มี! เรามีการประกันหลังการขายตามระยะเวลาที่ตกลงกัน และพร้อมแก้ไขปัญหาที่เกิดจากการทำงานของเราโดยไม่คิดค่าใช้จ่ายเพิ่มเติม
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-8 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>เริ่มต้นอย่างไร?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ติดต่อเราเพื่อคุยกันและให้คำปรึกษาฟรี! เราจะพูดคุยความต้องการ และแนะนำโซลูชันที่เหมาะสมที่สุดสำหรับธุรกิจคุณ ไม่มีค่าใช้จ่ายใดๆ ในการปรึกษา
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
575
src/pages/index.astro
Normal file
575
src/pages/index.astro
Normal file
@@ -0,0 +1,575 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
|
||||
const schemaData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "ProfessionalService",
|
||||
"name": "บริษัท มอร์มินิมอร์ จำกัด",
|
||||
"description": "รับทำเว็บไซต์ SEO AI Chatbot และ Marketing Automation สำหรับ SMEs ไทย เพิ่มยอดขาย ลดต้นทุน ด้วยเทคโนโลยีที่ทันสมัย",
|
||||
"url": "https://www.moreminimore.com",
|
||||
"telephone": "0809955945",
|
||||
"email": "contact@moreminimore.com",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "53 หมู่ 1 ต.บ้านแพ้ว อ.บ้านแพ้ว",
|
||||
"addressLocality": "สมุทรสาคร",
|
||||
"postalCode": "74120",
|
||||
"addressCountry": "TH"
|
||||
},
|
||||
"priceRange": "฿฿",
|
||||
"areaServed": "Thailand",
|
||||
"sameAs": [
|
||||
"https://www.facebook.com/moreminimore",
|
||||
"https://twitter.com/moreminimore",
|
||||
"https://www.linkedin.com/company/moreminimore"
|
||||
]
|
||||
}
|
||||
---
|
||||
|
||||
<Layout title="รับทำเว็บไซต์ SEO AI Chatbot | MoreminiMore - โซลูชัน IT เพื่อ SMEs ไทย">
|
||||
<script type="application/ld+json" set:html={JSON.stringify(schemaData)} />
|
||||
|
||||
<section id="hero" class="relative overflow-hidden min-h-[85vh] flex items-center">
|
||||
<div class="absolute inset-0 bg-gradient-to-br from-primary via-yellow-200 via-red-400 to-purple-500">
|
||||
<div class="absolute top-20 left-10 w-72 h-72 bg-red-500/30 rounded-full blur-3xl animate-float-1"></div>
|
||||
<div class="absolute bottom-20 right-10 w-96 h-96 bg-purple-500/30 rounded-full blur-3xl animate-float-2"></div>
|
||||
<div class="absolute top-1/3 left-1/4 w-48 h-48 bg-blue-500/20 rounded-full blur-2xl animate-float-3"></div>
|
||||
<div class="absolute bottom-1/3 right-1/4 w-64 h-64 bg-green-500/20 rounded-full blur-2xl animate-float-1" style="animation-delay: 1.5s;"></div>
|
||||
<div class="absolute top-1/2 left-1/2 w-40 h-40 bg-pink-500/25 rounded-full blur-2xl animate-float-2" style="animation-delay: 0.5s;"></div>
|
||||
</div>
|
||||
|
||||
<div class="absolute inset-0 overflow-hidden pointer-events-none">
|
||||
<div class="absolute top-1/4 left-[10%] w-3 h-3 bg-black/10 rounded-full animate-float-dot-1"></div>
|
||||
<div class="absolute top-1/3 left-[80%] w-2 h-2 bg-black/10 rounded-full animate-float-dot-2"></div>
|
||||
<div class="absolute top-2/3 left-[20%] w-4 h-4 bg-black/10 rounded-full animate-float-dot-3"></div>
|
||||
<div class="absolute top-1/2 left-[70%] w-2 h-2 bg-black/10 rounded-full animate-float-dot-1"></div>
|
||||
<div class="absolute top-3/4 left-[60%] w-3 h-3 bg-black/10 rounded-full animate-float-dot-2"></div>
|
||||
<div class="absolute top-1/5 left-[45%] w-2 h-2 bg-black/10 rounded-full animate-float-dot-3"></div>
|
||||
</div>
|
||||
|
||||
<div class="absolute inset-0 opacity-[0.03]" style="background-image: linear-gradient(black 1px, transparent 1px), linear-gradient(90deg, black 1px, transparent 1px); background-size: 50px 50px;"></div>
|
||||
|
||||
<div class="container mx-auto px-4 relative z-10 py-20">
|
||||
<div class="max-w-4xl mx-auto text-center">
|
||||
<div class="reveal stagger-1 inline-flex items-center gap-2 bg-black/10 backdrop-blur-sm px-4 py-2 rounded-full mb-8 animate-fade-in">
|
||||
<span class="w-2 h-2 bg-green-500 rounded-full animate-pulse"></span>
|
||||
<span class="text-sm font-medium text-black/80">พร้อมช่วยธุรกิจคุณเติบโต</span>
|
||||
</div>
|
||||
|
||||
<h1 class="reveal stagger-2 text-4xl md:text-6xl lg:text-7xl font-bold mb-6 text-black leading-tight animate-fade-in-up" style="animation-delay: 0.1s;">
|
||||
เปลี่ยนธุรกิจให้<br/>
|
||||
<span class="text-black">เติบโตด้วย AI</span>
|
||||
</h1>
|
||||
|
||||
<p class="reveal stagger-3 text-lg md:text-xl text-black/70 mb-10 max-w-2xl mx-auto leading-relaxed animate-fade-in-up" style="animation-delay: 0.2s;">
|
||||
รับทำเว็บไซต์ AI Chatbot และระบบอัตโนมัติทางการตลาด
|
||||
ที่ช่วยเพิ่มยอดขาย ลดต้นทุน ให้ธุรกิจ SMEs ไทย
|
||||
</p>
|
||||
|
||||
<div class="reveal stagger-4 flex flex-col sm:flex-row gap-4 justify-center items-center animate-fade-in-up" style="animation-delay: 0.3s;">
|
||||
<a href="tel:0809955945" class="group bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all duration-300 hover:scale-105 shadow-2xl hover:shadow-3xl flex items-center gap-3">
|
||||
<svg class="w-5 h-5 group-hover:animate-bounce" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/>
|
||||
</svg>
|
||||
โทรหาเรา
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="group bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all duration-300 hover:scale-105 shadow-2xl hover:shadow-3xl flex items-center gap-3">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5 group-hover:animate-bounce" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-5 mt-12 pt-8 border-t border-black/10 animate-fade-in-up" style="animation-delay: 0.4s;">
|
||||
<p class="text-sm text-black/50 mb-4">เชื่อถือได้</p>
|
||||
<div class="flex flex-wrap justify-center gap-6 text-black/60 text-sm">
|
||||
<span class="flex items-center gap-2">
|
||||
<svg class="w-4 h-4 text-green-600" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ปรึกษาฟรี
|
||||
</span>
|
||||
<span class="flex items-center gap-2">
|
||||
<svg class="w-4 h-4 text-green-600" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ดูแลหลังขาย
|
||||
</span>
|
||||
<span class="flex items-center gap-2">
|
||||
<svg class="w-4 h-4 text-green-600" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ราคาเหมาะสม
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="absolute bottom-8 left-1/2 -translate-x-1/2 animate-bounce">
|
||||
<svg class="w-6 h-6 text-black/40" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"/>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="services" class="py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="reveal text-center mb-16 max-w-2xl mx-auto">
|
||||
<span class="inline-block px-4 py-1 bg-primary/20 text-black rounded-full text-sm font-medium mb-4">
|
||||
บริการของเรา
|
||||
</span>
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
โซลูชันครบวงจร<br/>สำหรับธุรกิจของคุณ
|
||||
</h2>
|
||||
<p class="text-gray-600">
|
||||
เราช่วยคุณตั้งแต่เริ่มต้นจนถึงการเติบโต ด้วยเทคโนโลยีที่เหมาะกับงบประมาณ
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6 max-w-6xl mx-auto">
|
||||
<a href="/web-development" class="reveal stagger-1 group bg-gray-50 rounded-3xl p-8 hover:bg-primary transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
|
||||
<div class="w-16 h-16 bg-primary/20 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-white/50 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="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black group-hover:text-black">AI-Enhanced Website</h3>
|
||||
<p class="text-gray-600 text-sm mb-4 group-hover:text-gray-700">
|
||||
เว็บไซต์ที่มี AI Chatbot ตอบคำถามลูกค้า 24/7 พร้อมระบบ SEO ที่ติดอันดับ Google
|
||||
</p>
|
||||
<span class="text-sm font-medium text-black/60 group-hover:text-black/80 flex items-center gap-1">
|
||||
ดูรายละเอียด
|
||||
<svg class="w-4 h-4 group-hover:translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="/marketing-automation" class="reveal stagger-2 group bg-gray-50 rounded-3xl p-8 hover:bg-primary transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
|
||||
<div class="w-16 h-16 bg-primary/20 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-white/50 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="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black group-hover:text-black">Marketing Automation</h3>
|
||||
<p class="text-gray-600 text-sm mb-4 group-hover:text-gray-700">
|
||||
ระบบการตลาดอัตโนมัติ รวม SEO, LINE, Facebook, Email ลดงานซ้ำซ้อน
|
||||
</p>
|
||||
<span class="text-sm font-medium text-black/60 group-hover:text-black/80 flex items-center gap-1">
|
||||
ดูรายละเอียด
|
||||
<svg class="w-4 h-4 group-hover:translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="/ai-automation" class="reveal stagger-3 group bg-gray-50 rounded-3xl p-8 hover:bg-primary transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
|
||||
<div class="w-16 h-16 bg-primary/20 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-white/50 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="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black group-hover:text-black">AI Automation</h3>
|
||||
<p class="text-gray-600 text-sm mb-4 group-hover:text-gray-700">
|
||||
ระบบอัตโนมัติทุกอย่าง ตอบคำถาม ส่งข้อมูล บันทึกออร์เดอร์ 24/7
|
||||
</p>
|
||||
<span class="text-sm font-medium text-black/60 group-hover:text-black/80 flex items-center gap-1">
|
||||
ดูรายละเอียด
|
||||
<svg class="w-4 h-4 group-hover:translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="/tech-consult" class="reveal stagger-4 group bg-gray-50 rounded-3xl p-8 hover:bg-primary transition-all duration-300 hover:shadow-2xl hover:-translate-y-2">
|
||||
<div class="w-16 h-16 bg-primary/20 rounded-2xl flex items-center justify-center mb-6 group-hover:bg-white/50 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="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3 text-black group-hover:text-black">Tech Consult</h3>
|
||||
<p class="text-gray-600 text-sm mb-4 group-hover:text-gray-700">
|
||||
คำปรึกษาระบบ IT และ Cloud เลือกเครื่องมือที่เหมาะกับธุรกิจคุณ
|
||||
</p>
|
||||
<span class="text-sm font-medium text-black/60 group-hover:text-black/80 flex items-center gap-1">
|
||||
ดูรายละเอียด
|
||||
<svg class="w-4 h-4 group-hover:translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<div class="reveal stagger-5 bg-black rounded-3xl p-8 text-white flex flex-col justify-between">
|
||||
<div>
|
||||
<h3 class="text-xl font-bold mb-3 text-primary">ไม่แน่ใจเลือกอะไร?</h3>
|
||||
<p class="text-gray-400 text-sm mb-6">
|
||||
ปรึกษาฟรี! เราพร้อมแนะนำโซลูชันที่เหมาะกับธุรกิจและงบประมาณของคุณ
|
||||
</p>
|
||||
</div>
|
||||
<a href="tel:0809955945" class="bg-primary text-black px-6 py-3 rounded-full font-bold text-sm text-center hover:bg-primary/90 transition-colors">
|
||||
ปรึกษาฟรี
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="why-choose-us" class="py-24 bg-gray-50">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<h2 class="reveal text-3xl md:text-4xl font-bold text-center mb-12 text-black">
|
||||
ทำไมเลือกเรา?
|
||||
</h2>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8">
|
||||
<div class="reveal stagger-1 bg-white p-8 rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 hover:-translate-y-1 border border-gray-100">
|
||||
<div class="w-14 h-14 bg-primary/20 rounded-2xl flex items-center justify-center mb-5">
|
||||
<svg class="w-7 h-7 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="font-bold text-xl mb-3 text-black">เน้นผลลัพธ์</h3>
|
||||
<p class="text-gray-600 leading-relaxed">เราวัดผลทุกอย่าง และมุ่งเน้นให้เห็นผลจริงในการเพิ่มยอดขาย</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-2 bg-white p-8 rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 hover:-translate-y-1 border border-gray-100">
|
||||
<div class="w-14 h-14 bg-primary/20 rounded-2xl flex items-center justify-center mb-5">
|
||||
<svg class="w-7 h-7 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<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"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="font-bold text-xl mb-3 text-black">ราคาเหมาะสม</h3>
|
||||
<p class="text-gray-600 leading-relaxed">ออกแบบมาให้ SMEs สามารถเริ่มต้นได้ง่าย ไม่ต้องลงทุนมาก</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-3 bg-white p-8 rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 hover:-translate-y-1 border border-gray-100">
|
||||
<div class="w-14 h-14 bg-primary/20 rounded-2xl flex items-center justify-center mb-5">
|
||||
<svg class="w-7 h-7 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="font-bold text-xl mb-3 text-black">ดูแลต่อเนื่อง</h3>
|
||||
<p class="text-gray-600 leading-relaxed">ไม่ทิ้งหลังขาย พร้อมอบรมและสนับสนุนตลอดการใช้งาน</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-4 bg-white p-8 rounded-3xl shadow-sm hover:shadow-xl transition-all duration-300 hover:-translate-y-1 border border-gray-100">
|
||||
<div class="w-14 h-14 bg-primary/20 rounded-2xl flex items-center justify-center mb-5">
|
||||
<svg class="w-7 h-7 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 class="font-bold text-xl mb-3 text-black">ทำงานเร็ว</h3>
|
||||
<p class="text-gray-600 leading-relaxed">เข้าใจว่าธุรกิจต้องการผลลัพธ์เร็ว ทำงานตรงเวลา ไม่ผัดวัน</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="process" class="py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="text-center mb-16">
|
||||
<span class="reveal inline-block px-4 py-1 bg-primary/20 text-black rounded-full text-sm font-medium mb-4">
|
||||
กระบวนการทำงาน
|
||||
</span>
|
||||
<h2 class="reveal stagger-1 text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
เริ่มต้นง่ายๆ 4 ขั้นตอน
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<div class="reveal stagger-1 flex gap-6 mb-8 group">
|
||||
<div class="flex-shrink-0">
|
||||
<div class="w-16 h-16 bg-primary rounded-2xl flex items-center justify-center text-2xl font-bold text-black shadow-lg group-hover:scale-110 transition-transform">1</div>
|
||||
</div>
|
||||
<div class="flex-grow bg-gray-50 rounded-2xl p-6 hover:shadow-lg transition-shadow">
|
||||
<h3 class="font-bold text-lg mb-2 text-black">ปรึกษาฟรี</h3>
|
||||
<p class="text-gray-600 text-sm">พูดคุยกับเราฟรี! เราจะฟังความต้องการของคุณและแนะนำโซลูชันที่เหมาะสม</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-2 flex gap-6 mb-8 group">
|
||||
<div class="flex-shrink-0">
|
||||
<div class="w-16 h-16 bg-black text-primary rounded-2xl flex items-center justify-center text-2xl font-bold shadow-lg group-hover:scale-110 transition-transform">2</div>
|
||||
</div>
|
||||
<div class="flex-grow bg-gray-50 rounded-2xl p-6 hover:shadow-lg transition-shadow">
|
||||
<h3 class="font-bold text-lg mb-2 text-black">วางแผนและเสนอราคา</h3>
|
||||
<p class="text-gray-600 text-sm">เราจะส่ง proposal พร้อมราคาและ timeline ที่ชัดเจน ไม่มีค่าใช้จ่ายซ่อนเร้น</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-3 flex gap-6 mb-8 group">
|
||||
<div class="flex-shrink-0">
|
||||
<div class="w-16 h-16 bg-primary rounded-2xl flex items-center justify-center text-2xl font-bold text-black shadow-lg group-hover:scale-110 transition-transform">3</div>
|
||||
</div>
|
||||
<div class="flex-grow bg-gray-50 rounded-2xl p-6 hover:shadow-lg transition-shadow">
|
||||
<h3 class="font-bold text-lg mb-2 text-black">พัฒนาและติดตั้ง</h3>
|
||||
<p class="text-gray-600 text-sm">ทีมงานเริ่มพัฒนาระบบให้คุณ พร้อมอัปเดตความคืบหน้าตลอด</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-4 flex gap-6 group">
|
||||
<div class="flex-shrink-0">
|
||||
<div class="w-16 h-16 bg-black text-primary rounded-2xl flex items-center justify-center text-2xl font-bold shadow-lg group-hover:scale-110 transition-transform">4</div>
|
||||
</div>
|
||||
<div class="flex-grow bg-gray-50 rounded-2xl p-6 hover:shadow-lg transition-shadow">
|
||||
<h3 class="font-bold text-lg mb-2 text-black">ส่งมอบและดูแลต่อเนื่อง</h3>
|
||||
<p class="text-gray-600 text-sm">ส่งมอบพร้อมอบรมการใช้งาน และดูแลหลังการขายให้ตลอด</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="quick-cta" class="py-24 bg-primary">
|
||||
<div class="container mx-auto px-4 text-center">
|
||||
<h2 class="reveal text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
พร้อมเปลี่ยนธุรกิจแล้วหรือยัง?
|
||||
</h2>
|
||||
<p class="reveal stagger-1 text-black/70 mb-10 max-w-xl mx-auto text-lg">
|
||||
เริ่มต้นง่ายๆ แค่โทรหาหรือเพิ่ม LINE มาคุยกันก่อน ไม่มีค่าใช้จ่าย!
|
||||
</p>
|
||||
<div class="reveal stagger-2 flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/>
|
||||
</svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="seo-content" class="py-24 bg-gray-50">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<h2 class="reveal text-3xl md:text-4xl font-bold mb-8 text-center text-black">
|
||||
บริการรับทำเว็บไซต์ SEO และ AI Chatbot เพื่อธุรกิจ SMEs
|
||||
</h2>
|
||||
|
||||
<div class="space-y-8">
|
||||
<div class="reveal">
|
||||
<p class="text-gray-700 leading-relaxed">
|
||||
<strong class="text-black">บริษัท มอร์มินิมอร์ จำกัด</strong> ให้บริการรับทำเว็บไซต์ SEO และ AI Chatbot ครบวงจร สำหรับธุรกิจ SMEs ทั่วประเทศ เราเข้าใจดีว่าในยุคดิจิทัลปัจจุบัน การมีเว็บไซต์ที่สวยงามอย่างเดียวไม่เพียงพอ แต่ต้องเป็นเว็บไซต์ที่สามารถเพิ่มยอดขายได้จริง ติดอันดับ Google และมีระบบอัตโนมัติที่ช่วยลดต้นทุนในการดำเนินงาน
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-1">
|
||||
<h3 class="text-xl font-bold mt-8 mb-4 text-black">ทำไมต้องเลือกบริการของเรา?</h3>
|
||||
<p class="text-gray-700 leading-relaxed">
|
||||
ด้วยประสบการณ์ในการพัฒนาระบบ IT และ AI ให้กับธุรกิจหลากหลายประเภท เราพร้อมมอบโซลูชันที่เหมาะสมกับงบประมาณและความต้องการของคุณ ไม่ว่าจะเป็นเว็บไซต์สำหรับร้านค้าออนไลน์ ระบบ Chatbot ตอบคำถามอัตโนมัติ หรือการทำ SEO ให้เว็ติดอันดับ Google เราดูแลครบทุกขั้นตอนตั้งแต่ต้นจนจบ
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-2">
|
||||
<h3 class="text-xl font-bold mt-8 mb-4 text-black">บริการรับทำเว็บไซต์ครบวงจร</h3>
|
||||
<ul class="space-y-3 text-gray-700">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ออกแบบ UI/UX ที่ใช้งานง่าย สวยงาม ทันสมัย
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
รองรับ SEO ตั้งแต่โครงสร้างเว็บไซต์
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
Responsive Design แสดงผลสวยงามทุกอุปกรณ์
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ระบบจัดการเนื้อหา (CMS) ใช้งานง่าย
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ติดตั้ง SSL Certificate เพื่อความปลอดภัย
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เชื่อมต่อ Google Analytics และ Search Console
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
อบรมการใช้งานฟรี
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-3">
|
||||
<h3 class="text-xl font-bold mt-8 mb-4 text-black">บริการทำ SEO ติดอันดับ Google</h3>
|
||||
<p class="text-gray-700 mb-4 leading-relaxed">
|
||||
การทำ SEO (Search Engine Optimization) คือกระบวนการปรับแต่งเว็บไซต์ให้ติดอันดับต้นๆ ของ Google เมื่อลูกค้าค้นหาด้วยคำค้นหาที่เกี่ยวข้องกับธุรกิจคุณ เราใช้กลยุทธ์ที่เน้นความยั่งยืน ไม่ใช้วิธีลัดที่เสี่ยงต่อการถูกลงโทษจาก Google
|
||||
</p>
|
||||
<ul class="space-y-3 text-gray-700">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
วิจัย Keyword ที่มีศักยภาพและคู่แข่งไม่สูงเกินไป
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ปรับแต่ง On-Page SEO (Title, Meta Description, Headings)
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
สร้างคอนเทนต์คุณภาพที่ตอบโจทย์ผู้ใช้
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ปรับความเร็วเว็บไซต์ให้โหลดเร็ว
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
สร้าง Backlinks จากแหล่งที่น่าเชื่อถือ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ติดตามและรายงานผลอย่างสม่ำเสมอ
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-4">
|
||||
<h3 class="text-xl font-bold mt-8 mb-4 text-black">AI Chatbot ตอบคำถามลูกค้า 24/7</h3>
|
||||
<p class="text-gray-700 leading-relaxed">
|
||||
Chatbot คือระบบตอบคำถามอัตโนมัติที่ทำงานตลอด 24 ชั่วโมง ไม่มีวันหยุด ช่วยคุณตอบคำถามลูกค้าได้ทันที แม้ในเวลาที่ร้านปิด ลดภาระงานของพนักงาน และเพิ่มโอกาสในการปิดการขาย เพราะลูกค้าได้รับคำตอบทันทีที่ต้องการ
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-5">
|
||||
<h3 class="text-xl font-bold mt-8 mb-4 text-black">Marketing Automation ลดงานซ้ำซ้อน</h3>
|
||||
<p class="text-gray-700 leading-relaxed">
|
||||
ระบบอัตโนมัติทางการตลาดช่วยให้คุณสื่อสารกับลูกค้าได้อย่างมีประสิทธิภาพโดยไม่ต้องทำด้วยตนเองทุกครั้ง เช่น การส่งอีเมลติดตามลูกค้าที่ทิ้งตะกร้าสินค้า การส่งโปรโมชั่นวันเกิด หรือการแจ้งเตือนเมื่อมีลูกค้าใหม่
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-6 bg-primary/10 rounded-2xl p-6 mt-8">
|
||||
<h3 class="text-xl font-bold mb-4 text-black">เริ่มต้นอย่างไร?</h3>
|
||||
<p class="text-gray-700 leading-relaxed">
|
||||
หากคุณสนใจบริการของเรา สามารถติดต่อมาปรึกษาฟรี ไม่มีค่าใช้จ่าย เราพร้อมช่วยคุณวิเคราะห์ความต้องการและแนะนำโซลูชันที่เหมาะสมที่สุดกับธุรกิจและงบประมาณของคุณ
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="faq" class="py-24 bg-white">
|
||||
<div class="container mx-auto px-4 max-w-3xl">
|
||||
<h2 class="reveal text-3xl md:text-4xl font-bold text-center mb-12 text-black">
|
||||
คำถามที่พบบ่อย
|
||||
</h2>
|
||||
|
||||
<div class="space-y-4">
|
||||
<details class="reveal stagger-1 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>SMEs ขนาดเล็ก ใช้บริการของคุณได้ไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ได้แน่นอน! เราออกแบบบริการสำหรับ SMEs โดยเฉพาะ มีทั้ง Package เล็กสำหรับธุรกิจเริ่มต้น และโซลูชันใหญ่สำหรับธุรกิจที่กำลังขยาย
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-2 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>ต้องใช้ความรู้ทางเทคนิคไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ไม่จำเป็น! เราดูแลทุกอย่างตั้งแต่ต้นจนจบ และอบรมทีมของคุณให้ใช้งานระบบได้อย่างมั่นใจ
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-3 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>ใช้เวลานานแค่ไหนถึงจะเห็นผล?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ขึ้นอยู่กับบริการ: เว็บไซต์ใช้เวลา 2-6 สัปดาห์, Marketing Automation เห็นผลใน 1-3 เดือน, SEO ใช้เวลา 3-6 เดือนในการติดอันดับ
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-4 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>มีบริการหลังการขายไหม?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
มี! เราดูแลหลังการติดตั้ง อบรมการใช้งาน และพร้อมให้คำปรึกษาเมื่อคุณต้องการ
|
||||
</div>
|
||||
</details>
|
||||
|
||||
<details class="reveal stagger-5 group bg-gray-50 rounded-2xl overflow-hidden">
|
||||
<summary class="flex justify-between items-center cursor-pointer p-6 font-bold text-black hover:bg-gray-100 transition">
|
||||
<span>เริ่มต้นอย่างไร?</span>
|
||||
<svg class="w-6 h-6 group-open:rotate-45 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
</summary>
|
||||
<div class="px-6 pb-6 text-gray-600 leading-relaxed">
|
||||
ติดต่อเราเพื่อคุยกันและให้คำปรึกษาฟรี! เราจะพูดคุยความต้องการ และแนะนำโซลูชันที่เหมาะสมที่สุดสำหรับธุรกิจคุณ
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="final-cta" class="relative py-32 bg-black text-white overflow-hidden">
|
||||
<div class="absolute inset-0 opacity-20">
|
||||
<div class="absolute top-0 left-1/4 w-96 h-96 bg-primary rounded-full blur-3xl"></div>
|
||||
<div class="absolute bottom-0 right-1/4 w-72 h-72 bg-purple-500 rounded-full blur-3xl"></div>
|
||||
</div>
|
||||
|
||||
<div class="container mx-auto px-4 text-center relative z-10">
|
||||
<div class="reveal max-w-3xl mx-auto">
|
||||
<span class="inline-block px-4 py-1 bg-primary/20 text-primary rounded-full text-sm font-medium mb-6">
|
||||
เริ่มต้นวันนี้
|
||||
</span>
|
||||
<h2 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 text-white leading-tight">
|
||||
พร้อมเปลี่ยน<br/><span class="text-primary">องค์กรด้วย AI</span> หรือยัง?
|
||||
</h2>
|
||||
<p class="text-gray-400 text-lg mb-12 max-w-xl mx-auto leading-relaxed">
|
||||
ปรึกษาผู้เชี่ยวชาญฟรี เราพร้อมช่วยคุณวางกลยุทธ์ AI ที่วัดผลได้
|
||||
</p>
|
||||
|
||||
<div class="reveal stagger-1 flex flex-col sm:flex-row gap-6 justify-center items-center">
|
||||
<a href="tel:0809955945" class="group bg-primary text-black px-10 py-5 rounded-full font-bold text-xl hover:bg-primary/90 transition-all hover:scale-105 shadow-2xl shadow-primary/30 flex items-center justify-center gap-3 w-full sm:w-auto">
|
||||
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/>
|
||||
</svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="group bg-white text-black px-10 py-5 rounded-full font-bold text-xl hover:bg-gray-100 transition-all hover:scale-105 shadow-2xl flex items-center justify-center gap-3 w-full sm:w-auto">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-6 h-6" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="reveal stagger-2 mt-16 pt-8 border-t border-white/10">
|
||||
<div class="flex flex-wrap justify-center gap-8 text-gray-500 text-sm">
|
||||
<span class="flex items-center gap-2">
|
||||
<svg class="w-5 h-5 text-green-500" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ปรึกษาฟรี
|
||||
</span>
|
||||
<span class="flex items-center gap-2">
|
||||
<svg class="w-5 h-5 text-green-500" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ไม่มีค่าใช้จ่ายเริ่มต้น
|
||||
</span>
|
||||
<span class="flex items-center gap-2">
|
||||
<svg class="w-5 h-5 text-green-500" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ดูแลต่อเนื่อง
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
134
src/pages/marketing-automation.astro
Normal file
134
src/pages/marketing-automation.astro
Normal file
@@ -0,0 +1,134 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
|
||||
const schemaData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Service",
|
||||
"name": "Marketing Automation - ระบบการตลาดอัตโนมัติ",
|
||||
"description": "ระบบการตลาดอัตโนมัติ รวม SEO, LINE, Facebook, Email ลดงานซ้ำซ้อน",
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "บริษัท มอร์มินิมอร์ จำกัด"
|
||||
}
|
||||
}
|
||||
---
|
||||
|
||||
<Layout title="ระบบ Marketing Automation | การตลาดอัตโนมัติ | MoreminiMore">
|
||||
<script type="application/ld+json" set:html={JSON.stringify(schemaData)} />
|
||||
<Breadcrumbs items={[{ label: "Marketing Automation" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<span class="inline-block px-4 py-1 bg-primary/20 text-black rounded-full text-sm font-medium mb-4">
|
||||
บริการ
|
||||
</span>
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-6 text-black">
|
||||
Marketing Automation
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600 mb-8">
|
||||
ระบบการตลาดอัตโนมัติ รวม SEO, LINE, Facebook, Email ลดงานซ้ำซ้อน
|
||||
</p>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<div class="bg-gray-50 rounded-3xl p-8">
|
||||
<h3 class="text-xl font-bold mb-4 text-black">🎯 ประโยชน์ที่คุณจะได้รับ</h3>
|
||||
<ul class="space-y-3 text-gray-600">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ลดงานซ้ำซ้อนได้ถึง 80%
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
สื่อสารกับลูกค้าได้ตลอดเวลา
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เพิ่มยอดขายอย่างมีประสิทธิภาพ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
วิเคราะห์ข้อมูลลูกค้าได้ลึกขึ้น
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ประหยัดเวลาและค่าใช้จ่าย
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-black rounded-3xl p-8 text-white">
|
||||
<h3 class="text-xl font-bold mb-4 text-primary">🚀 ระบบอัตโนมัติครอบคลุม</h3>
|
||||
<ul class="space-y-3 text-gray-300">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
LINE OA อัตโนมัติ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
Facebook Messenger Bot
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
Email Marketing อัตโนมัติ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
SEO อัตโนมัติ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ติดตามลูกค้าอัตโนมัติ
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 class="text-2xl font-bold mb-6 text-black">📋 Automation Workflows พร้อมใช้งาน</h2>
|
||||
<div class="grid md:grid-cols-2 gap-6 mb-12">
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">🛒 E-commerce</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>• ส่งอีเมลติดตามตะกร้าทิ้ง</li>
|
||||
<li>• แจ้งโปรโมชั่นวันเกิด</li>
|
||||
<li>• ยืนยันออร์เดอร์อัตโนมัติ</li>
|
||||
<li>• ขอบคุณหลังซื้อ</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">🏢 Service Business</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>• นัดหมายอัตโนมัติ</li>
|
||||
<li>• ติดตามลูกค้าเก่า</li>
|
||||
<li>• แจ้งเตือนการชำระเงิน</li>
|
||||
<li>• ส่งคูปองรายวัน/สัปดาห์</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="reveal py-20 bg-primary">
|
||||
<div class="container mx-auto px-4 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
พร้อมเริ่มต้นแล้วหรือยัง?
|
||||
</h2>
|
||||
<p class="text-black/70 mb-8 max-w-xl mx-auto">
|
||||
ปรึกษาฟรี! เราพร้อมแนะนำโซลูชันที่เหมาะกับธุรกิจของคุณ
|
||||
</p>
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
79
src/pages/portfolio.astro
Normal file
79
src/pages/portfolio.astro
Normal file
@@ -0,0 +1,79 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
---
|
||||
|
||||
<Layout title="ผลงาน | MoreminiMore">
|
||||
<Breadcrumbs items={[{ label: "ผลงาน" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<div class="text-center mb-12">
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-4 text-black">
|
||||
ผลงานของเรา
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600">
|
||||
ตัวอย่างเว็บไซต์และระบบที่เราสร้างให้ลูกค้า
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8">
|
||||
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
|
||||
<div class="h-48 bg-gradient-to-br from-purple-500 to-blue-500 flex items-center justify-center">
|
||||
<span class="text-white text-lg font-bold">E-commerce Website</span>
|
||||
</div>
|
||||
<div class="p-6">
|
||||
<h3 class="font-bold text-lg text-black mb-2">ร้านค้าออนไลน์ Thai Craft</h3>
|
||||
<p class="text-gray-600 text-sm mb-4">เว็บไซต์ขายสินค้าหัตถกรรมไทย พร้อม AI Chatbot ตอบคำถาม</p>
|
||||
<span class="text-xs text-primary">AI Chatbot • SEO • E-commerce</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
|
||||
<div class="h-48 bg-gradient-to-br from-green-500 to-teal-500 flex items-center justify-center">
|
||||
<span class="text-white text-lg font-bold">Service Business</span>
|
||||
</div>
|
||||
<div class="p-6">
|
||||
<h3 class="font-bold text-lg text-black mb-2">คลินิกสุขภาพ</h3>
|
||||
<p class="text-gray-600 text-sm mb-4">ระบบนัดหมายออนไลน์ พร้อม Marketing Automation</p>
|
||||
<span class="text-xs text-primary">Booking • LINE OA • Automation</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
|
||||
<div class="h-48 bg-gradient-to-br from-orange-500 to-red-500 flex items-center justify-center">
|
||||
<span class="text-white text-lg font-bold">Corporate Website</span>
|
||||
</div>
|
||||
<div class="p-6">
|
||||
<h3 class="font-bold text-lg text-black mb-2">บริษัทก่อสร้าง</h3>
|
||||
<p class="text-gray-600 text-sm mb-4">เว็บไซต์องค์กร พร้อมระบบ Portfolio</p>
|
||||
<span class="text-xs text-primary">Corporate • Portfolio • SEO</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-2xl transition-all duration-300 hover:-translate-y-2">
|
||||
<div class="h-48 bg-gradient-to-br from-primary to-yellow-300 flex items-center justify-center">
|
||||
<span class="text-black text-lg font-bold">Restaurant</span>
|
||||
</div>
|
||||
<div class="p-6">
|
||||
<h3 class="font-bold text-lg text-black mb-2">ร้านอาหารไทย</h3>
|
||||
<p class="text-gray-600 text-sm mb-4">ระบบจองโต๊ะและ Delivery Integration</p>
|
||||
<span class="text-xs text-primary">Booking • Delivery • POS</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-12 text-center">
|
||||
<p class="text-gray-600 mb-6">
|
||||
ต้องการให้เราสร้างเว็บไซต์ให้คุณ?
|
||||
</p>
|
||||
<a href="tel:0809955945" class="inline-flex items-center gap-2 bg-primary text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-primary/90 transition-all">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>
|
||||
โทรปรึกษาฟรี
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
87
src/pages/privacy-policy.astro
Normal file
87
src/pages/privacy-policy.astro
Normal file
@@ -0,0 +1,87 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
---
|
||||
|
||||
<Layout title="นโยบายความเป็นส่วนตัว | Privacy Policy | MoreminiMore">
|
||||
<Breadcrumbs items={[{ label: "นโยบายความเป็นส่วนตัว" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto prose prose-lg">
|
||||
<h1 class="text-4xl font-bold mb-8 text-black">นโยบายความเป็นส่วนตัว</h1>
|
||||
<p class="text-gray-600 mb-8">อัปเดตล่าสุด: มกราคม 2568</p>
|
||||
|
||||
<div class="space-y-8 text-gray-700">
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">1. ข้อมูลที่เรา<E0B8A3>เก็บรวบรวม</h2>
|
||||
<p>บริษัท มอร์มินิมอร์ จำกัด ("เรา" หรือ "บริษัท") เก็บรวบรวมข้อมูลดังต่อไปนี้:</p>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li><strong>ข้อมูลส่วนบุคคล:</strong> ชื่อ, อีเมล, เบอร์โทรศัพท์, ที่อยู่, ข้อมูลบริษัท</li>
|
||||
<li><strong>ข้อมูลการใช้งาน:</strong> ข้อมูลการเข้าชมเว็บไซต์, IP address, ประเภทเบราว์เซอร์</li>
|
||||
<li><strong>ข้อมูลจากคุกกี้:</strong> ข้อมูลการใช้งานเว็บไซต์เพื่อปรับปรุงประสบการณ์</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">2. วัตถุประสงค์ในการใช้ข้อมูล</h2>
|
||||
<p>เราใช้ข้อมูลที่เก็บรวบรวมเพื่อ:</p>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>ให้บริการและดำเนินการตามคำขอของคุณ</li>
|
||||
<li>ติดต่อกลับเกี่ยวกับบริการของเรา</li>
|
||||
<li>ปรับปรุงเว็บไซต์และบริการ</li>
|
||||
<li>ส่งข้อมูลข่าวสารและการตลาด (ตามความยินยอม)</li>
|
||||
<li>ปฏิบัติตามกฎหมายที่เกี่ยวข้อง</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">3. การใช้คุกกี้</h2>
|
||||
<p>เว็บไซต์ของเราใช้คุกกี้เพื่อ:</p>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li><strong>คุกกี้ที่จำเป็น:</strong> คุกกี้พื้นฐานที่จำเป็นสำหรับการทำงานของเว็บไซต์</li>
|
||||
<li><strong>คุกกี้วิเคราะห์:</strong> ช่วยให้เราเข้าใจการใช้งานเว็บไซต์</li>
|
||||
<li><strong>คุกกี้การตลาด:</strong> ใช้เพื่อแสดงโฆษณาที่เกี่ยวข้อง</li>
|
||||
</ul>
|
||||
<p class="mt-4">คุณสามารถเลือกปฏิเสธคุกกี้ได้ โดยคลิกที่ปุ่ม "ปฏิเสธทั้งหมด" ในแบนเนอร์คุกกี้</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">4. การเก็บรักษาและความปลอดภัยของข้อมูล</h2>
|
||||
<p>เราเก็บรักษาข้อมูลของคุณอย่างปลอดภัยและเป็นความลับ โดยใช้มาตรการรักษาความปลอดภัยที่เหมาะสม เราเก็บรักษาข้อมูลเท่าที่จำเป็นตามวัตถุประสงค์ในการใช้งาน</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">5. สิทธิของคุณ</h2>
|
||||
<p>คุณมีสิทธิ์:</p>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>เข้าถึงข้อมูลส่วนบุคคลของคุณ</li>
|
||||
<li>ขอแก้ไขข้อมูลที่ไม่ถูกต้อง</li>
|
||||
<li>ขอลบข้อมูลของคุณ</li>
|
||||
<li>ขอให้เราหยุดการประมวลผลข้อมูล</li>
|
||||
<li>ถอนความยินยอมได้ทุกเมื่อ</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">6. การติดต่อเรา</h2>
|
||||
<p>หากมีคำถามเกี่ยวกับนโยบายความเป็นส่วนตัวนี้ กรุณาติดต่อเรา:</p>
|
||||
<ul class="list-none pl-6 mt-4 space-y-2">
|
||||
<li><strong>อีเมล:</strong> contact@moreminimore.com</li>
|
||||
<li><strong>โทรศัพท์:</strong> 080-995-5945</li>
|
||||
<li><strong>ที่อยู่:</strong> 53 หมู่ 1 ต.บ้านแพ้ว อ.บ้านแพ้ว จ.สมุทรสาคร 74120</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">7. หน่วยงานที่รับผิดชอบ</h2>
|
||||
<p>หากคุณเห็นว่าเราละเมิดสิทธิความเป็นส่วนตัวของคุณ คุณสามารถยื่นเรื่องร้องเรียนได้ที่:</p>
|
||||
<p class="mt-2"><strong>สำนักงานคณะกรรมการคุ้มครองข้อมูลส่วนบุคคล (PDPC)</strong><br/>
|
||||
อีเมล: pdpc@pdpc.or.th<br/>
|
||||
โทร: 0-2112-1234</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</ Layout>
|
||||
134
src/pages/tech-consult.astro
Normal file
134
src/pages/tech-consult.astro
Normal file
@@ -0,0 +1,134 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
|
||||
const schemaData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Service",
|
||||
"name": "Tech Consult - คำปรึกษาระบบ IT และ Cloud",
|
||||
"description": "คำปรึกษาระบบ IT และ Cloud เลือกเครื่องมือที่เหมาะกับธุรกิจคุณ",
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "บริษัท มอร์มินิมอร์ จำกัด"
|
||||
}
|
||||
}
|
||||
---
|
||||
|
||||
<Layout title="คำปรึกษา Tech Consult | IT และ Cloud | MoreminiMore">
|
||||
<script type="application/ld+json" set:html={JSON.stringify(schemaData)} />
|
||||
<Breadcrumbs items={[{ label: "Tech Consult" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<span class="inline-block px-4 py-1 bg-primary/20 text-black rounded-full text-sm font-medium mb-4">
|
||||
บริการ
|
||||
</span>
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-6 text-black">
|
||||
Tech Consult
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600 mb-8">
|
||||
คำปรึกษาระบบ IT และ Cloud เลือกเครื่องมือที่เหมาะกับธุรกิจคุณ
|
||||
</p>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<div class="bg-gray-50 rounded-3xl p-8">
|
||||
<h3 class="text-xl font-bold mb-4 text-black">🎯 ทำไมต้องปรึกษา?</h3>
|
||||
<ul class="space-y-3 text-gray-600">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เลือกเทคโนโลยีที่เหมาะกับงบ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
วางแผนระบบให้ขยายได้
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ประหยัดค่าใช้จ่ายในระยะยาว
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ไม่ต้องเสี่ยงกับการเลือกผิด
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ได้คำแนะนำจากผู้เชี่ยวชาญ
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-black rounded-3xl p-8 text-white">
|
||||
<h3 class="text-xl font-bold mb-4 text-primary">🚀 เราให้คำปรึกษาอะไร?</h3>
|
||||
<ul class="space-y-3 text-gray-300">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เลือก Cloud Platform
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ออกแบบระบบ Infrastructure
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เลือก Tech Stack
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
วางแผน Security
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
DevOps & CI/CD
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 class="text-2xl font-bold mb-6 text-black">📋 Cloud Platforms ที่เราแนะนำ</h2>
|
||||
<div class="grid md:grid-cols-4 gap-6 mb-12">
|
||||
<div class="bg-gray-50 rounded-2xl p-6 text-center">
|
||||
<h4 class="font-bold mb-2 text-black">AWS</h4>
|
||||
<p class="text-sm text-gray-600">ครบวงจร ปรับขนาดได้</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6 text-center">
|
||||
<h4 class="font-bold mb-2 text-black">Google Cloud</h4>
|
||||
<p class="text-sm text-gray-600">AI/ML แข็งแกร่ง</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6 text-center">
|
||||
<h4 class="font-bold mb-2 text-black">Azure</h4>
|
||||
<p class="text-sm text-gray-600">ผสานกับ Microsoft</p>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6 text-center">
|
||||
<h4 class="font-bold mb-2 text-black">Vercel/Netlify</h4>
|
||||
<p class="text-sm text-gray-600">Deploy ง่าย เร็ว</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="reveal py-20 bg-primary">
|
||||
<div class="container mx-auto px-4 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
พร้อมปรึกษาแล้วหรือยัง?
|
||||
</h2>
|
||||
<p class="text-black/70 mb-8 max-w-xl mx-auto">
|
||||
ปรึกษาฟรี! เราพร้อมให้คำแนะนำที่ดีที่สุดสำหรับธุรกิจของคุณ
|
||||
</p>
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
112
src/pages/terms-and-conditions.astro
Normal file
112
src/pages/terms-and-conditions.astro
Normal file
@@ -0,0 +1,112 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
---
|
||||
|
||||
<Layout title="ข้อกำหนดและเงื่อนไข | Terms and Conditions | MoreminiMore">
|
||||
<Breadcrumbs items={[{ label: "ข้อกำหนดและเงื่อนไข" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto prose prose-lg">
|
||||
<h1 class="text-4xl font-bold mb-8 text-black">ข้อกำหนดและเงื่อนไข</h1>
|
||||
<p class="text-gray-600 mb-8">อัปเดตล่าสุด: มกราคม 2568</p>
|
||||
|
||||
<div class="space-y-8 text-gray-700">
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">1. การยอมรับข้อกำหนด</h2>
|
||||
<p>การเข้าใช้งานเว็บไซต์และบริการของบริษัท มอร์มินิมอร์ จำกัด ("เรา" หรือ "บริษัท") ถือว่าคุณยอมรับข้อกำหนดและเงื่อนไขเหล่านี้ หากคุณไม่ยอมรับ กรุณาหยุดใช้งานเว็บไซต์ของเรา</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">2. บริการของเรา</h2>
|
||||
<p>เราให้บริการดังต่อไปนี้:</p>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>รับทำเว็บไซต์ AI-Enhanced</li>
|
||||
<li>บริการ Marketing Automation</li>
|
||||
<li>บริการ AI Automation</li>
|
||||
<li>บริการให้คำปรึกษาด้าน IT และ Cloud (Tech Consult)</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">3. การสั่งซื้อและการชำระเงิน</h2>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>การสั่งซื้อจะสมบูรณ์เมื่อได้รับการยืนยันและชำระเงินแล้ว</li>
|
||||
<li>ราคาที่แสดงเป็นราคาสุทธิ รวมภาษีมูลค่าเพิ่ม (VAT) แล้ว</li>
|
||||
<li>การชำระเงินผ่านช่องทางที่เรากำหนดเท่านั้น</li>
|
||||
<li>โปรดชำระเงินภายในระยะเวลาที่กำหนดในใบเสนอราคา</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">4. ระยะเวลาและการส่งมอบ</h2>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>ระยะเวลาการส่งมอบเป็นไปตามที่ระบุในใบเสนอราคา</li>
|
||||
<li>ระยะเวลาอาจเปลี่ยนแปลงตามความซับซ้อนของโปรเจกต์และความร่วมมือของลูกค้า</li>
|
||||
<li>การส่งมอบงานจะสมบูรณ์เมื่อลูกค้ายืนยันการรับงาน</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">5. การรับประกันและการสนับสนุน</h2>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>เรารับประกันงานตามระยะเวลาที่ตกลงในสัญญา</li>
|
||||
<li>การรับประกันครอบคลุมการแก้ไขข้อผิดพลาดที่เกิดจากการทำงานของเรา</li>
|
||||
<li>การรับประกันไม่ครอบคลุมการดัดแปลงแก้ไขโดยบุคคลที่สาม</li>
|
||||
<li>เราให้การสนับสนุนหลังการขายตามที่ตกลงกัน</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">6. สิทธิในทรัพย์สินทางปัญญา</h2>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>ซอร์สโค้ดและเอกสารที่เราพัฒนาเป็นของลูกค้าหลังการชำระเงินครบถ้วน</li>
|
||||
<li>เราใช้ Framework และ Library ที่เป็น Open Source</li>
|
||||
<li>Logo และภาพที่ลูกค้าจัดหมายมายังคงเป็นของลูกค้า</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">7. ความรับผิดชอบของลูกค้า</h2>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>จัดหาเนื้อหาและข้อมูลที่จำเป็นตามเวลาที่กำหนด</li>
|
||||
<li>ตรวจสอบและให้ข้อมูลยืนยันที่จำเป็นต่อการดำเนินงาน</li>
|
||||
<li>ชำระเงินตามเงื่อนไขที่ตกลงกัน</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">8. การยกเลิกและการคืนเงิน</h2>
|
||||
<ul class="list-disc pl-6 mt-4 space-y-2">
|
||||
<li>การยกเลิกต้องแจ้งเป็นลายลักษณ์อักษรล่วงหน้า 7 วัน</li>
|
||||
<li>กรณียกเลิกก่อนเริ่มงาน จะคืนเงินที่ชำระมาแล้วเต็มจำนวน</li>
|
||||
<li>กรณียกเลิกระหว่างดำเนินงาน จะคืนเงินตามสัดส่วนงานที่ยังไม่สำเร็จ</li>
|
||||
<li>งานที่สำเร็จแล้วไม่สามารถขอคืนเงินได้</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">9. ข้อจำกัดความรับผิด</h2>
|
||||
<p>ความรับผิดของเราจำกัดอยู่ที่จำนวนเงินที่ลูกค้าชำระสำหรับบริการที่เกิดข้อพิพาท เราไม่รับผิดต่อความเสียหายทางอ้อม ความเสียหายพิเศษ หรือความเสียหายต่อเนื่อง</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">10. กฎหมายที่ใช้บังคับ</h2>
|
||||
<p>ข้อกำหนดและเงื่อนไขนี้อยู่ภายใต้กฎหมายไทย ข้อพิพาทใดๆ ที่เกิดขึ้นจากการใช้บริการของเราอยู่ภายใต้เขตอำนาจของศาลไทย</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2 class="text-2xl font-bold mb-4 text-black">11. การติดต่อเรา</h2>
|
||||
<p>หากมีคำถามเกี่ยวกับข้อกำหนดและเงื่อนไขนี้ กรุณาติดต่อเรา:</p>
|
||||
<ul class="list-none pl-6 mt-4 space-y-2">
|
||||
<li><strong>อีเมล:</strong> contact@moreminimore.com</li>
|
||||
<li><strong>โทรศัพท์:</strong> 080-995-5945</li>
|
||||
<li><strong>ที่อยู่:</strong> 53 หมู่ 1 ต.บ้านแพ้ว อ.บ้านแพ้ว จ.สมุทรสาคร 74120</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</ Layout>
|
||||
144
src/pages/web-development.astro
Normal file
144
src/pages/web-development.astro
Normal file
@@ -0,0 +1,144 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Breadcrumbs from '../components/Breadcrumbs.astro'
|
||||
|
||||
const schemaData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Service",
|
||||
"name": "AI-Enhanced Website - รับทำเว็บไซต์ AI Chatbot",
|
||||
"description": "เว็บไซต์ที่มี AI Chatbot ตอบคำถามลูกค้า 24/7 พร้อมระบบ SEO ที่ติดอันดับ Google",
|
||||
"provider": {
|
||||
"@type": "Organization",
|
||||
"name": "บริษัท มอร์มินิมอร์ จำกัด"
|
||||
}
|
||||
}
|
||||
---
|
||||
|
||||
<Layout title="รับทำเว็บไซต์ AI Chatbot | AI-Enhanced Website | MoreminiMore">
|
||||
<script type="application/ld+json" set:html={JSON.stringify(schemaData)} />
|
||||
<Breadcrumbs items={[{ label: "AI-Enhanced Website" }]} />
|
||||
|
||||
<section class="reveal py-24 bg-white">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="max-w-4xl mx-auto">
|
||||
<span class="inline-block px-4 py-1 bg-primary/20 text-black rounded-full text-sm font-medium mb-4">
|
||||
บริการ
|
||||
</span>
|
||||
<h1 class="text-4xl md:text-5xl font-bold mb-6 text-black">
|
||||
AI-Enhanced Website
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600 mb-8">
|
||||
เว็บไซต์ที่มี AI Chatbot ตอบคำถามลูกค้า 24/7 พร้อมระบบ SEO ที่ติดอันดับ Google
|
||||
</p>
|
||||
|
||||
<div class="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<div class="bg-gray-50 rounded-3xl p-8">
|
||||
<h3 class="text-xl font-bold mb-4 text-black">🎯 ประโยชน์ที่คุณจะได้รับ</h3>
|
||||
<ul class="space-y-3 text-gray-600">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ลดภาระงานตอบคำถามลูกค้าได้ถึง 70%
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ตอบคำถามลูกค้าได้ตลอด 24 ชั่วโมง
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เพิ่มโอกาสปิดการขายทันที
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ติดอันดับ Google ได้เร็วขึ้น
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-green-600 mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
แสดงผลสวยงามทุกอุปกรณ์
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-black rounded-3xl p-8 text-white">
|
||||
<h3 class="text-xl font-bold mb-4 text-primary">🚀 AI Chatbot ทำอะไรได้บ้าง?</h3>
|
||||
<ul class="space-y-3 text-gray-300">
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
ตอบคำถามทั่วไปเกี่ยวกับสินค้า/บริการ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
แนะนำสินค้าที่เหมาะกับลูกค้า
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
บันทึกข้อมูลลูกค้าและออร์เดอร์
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
นัดหมาย/จองคิวอัตโนมัติ
|
||||
</li>
|
||||
<li class="flex items-start gap-3">
|
||||
<svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
|
||||
เชื่อมต่อ LINE, Facebook, Website
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 class="text-2xl font-bold mb-6 text-black">📋 ฟีเจอร์ใน Package</h2>
|
||||
<div class="grid md:grid-cols-3 gap-6 mb-12">
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">Design</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>✅ UI/UX ที่ทันสมัย</li>
|
||||
<li>✅ Responsive Design</li>
|
||||
<li>✅ รองรับทุกอุปกรณ์</li>
|
||||
<li>✅ SSL Certificate</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">AI Features</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>✅ AI Chatbot ตอบ 24/7</li>
|
||||
<li>✅ ฝึก AI ด้วยข้อมูลธุรกิจคุณ</li>
|
||||
<li>✅ เชื่อมต่อ LINE/FB/Website</li>
|
||||
<li>✅ วิเคราะห์พฤติกรรมลูกค้า</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bg-gray-50 rounded-2xl p-6">
|
||||
<h4 class="font-bold mb-3 text-black">SEO</h4>
|
||||
<ul class="space-y-2 text-sm text-gray-600">
|
||||
<li>✅ SEO ตั้งแต่โครงสร้าง</li>
|
||||
<li>✅ Google Analytics</li>
|
||||
<li>✅ Search Console</li>
|
||||
<li>✅ Sitemap & Robots</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="reveal py-20 bg-primary">
|
||||
<div class="container mx-auto px-4 text-center">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-black">
|
||||
พร้อมเริ่มต้นแล้วหรือยัง?
|
||||
</h2>
|
||||
<p class="text-black/70 mb-8 max-w-xl mx-auto">
|
||||
ปรึกษาฟรี! เราพร้อมแนะนำโซลูชันที่เหมาะกับธุรกิจของคุณ
|
||||
</p>
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
||||
<a href="tel:0809955945" class="bg-black text-primary px-8 py-4 rounded-full font-bold text-lg hover:bg-black/80 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>
|
||||
080-995-5945
|
||||
</a>
|
||||
<a href="https://line.me/ti/p/~@539hdlul" target="_blank" rel="noopener noreferrer" class="bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-100 transition-all hover:scale-105 shadow-xl flex items-center justify-center gap-2">
|
||||
<img src="/icons/social/line.svg" alt="LINE" class="w-5 h-5" />
|
||||
เพิ่ม Line
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
111
src/styles/global.css
Normal file
111
src/styles/global.css
Normal file
@@ -0,0 +1,111 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer base {
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
@apply font-sans text-dark-gray antialiased;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
@apply font-heading font-bold;
|
||||
}
|
||||
}
|
||||
|
||||
@layer components {
|
||||
.btn-brand {
|
||||
@apply bg-primary text-black px-6 py-3 rounded-full font-bold hover:bg-primary/90 transition-all duration-300 hover:scale-105;
|
||||
}
|
||||
|
||||
.btn-brand-outline {
|
||||
@apply bg-transparent text-black px-6 py-3 rounded-full font-bold border-2 border-black hover:bg-black hover:text-primary transition-all duration-300;
|
||||
}
|
||||
}
|
||||
|
||||
/* Animation Keyframes */
|
||||
@keyframes fade-in {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes fade-in-up {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes float-1 {
|
||||
0%, 100% { transform: translateY(0) translateX(0); }
|
||||
25% { transform: translateY(-30px) translateX(15px); }
|
||||
50% { transform: translateY(-20px) translateX(-15px); }
|
||||
75% { transform: translateY(-40px) translateX(10px); }
|
||||
}
|
||||
|
||||
@keyframes float-2 {
|
||||
0%, 100% { transform: translateY(0) translateX(0); }
|
||||
25% { transform: translateY(-25px) translateX(-20px); }
|
||||
50% { transform: translateY(-35px) translateX(15px); }
|
||||
75% { transform: translateY(-15px) translateX(-10px); }
|
||||
}
|
||||
|
||||
@keyframes float-3 {
|
||||
0%, 100% { transform: translateY(0) scale(1); }
|
||||
50% { transform: translateY(-30px) scale(1.1); }
|
||||
}
|
||||
|
||||
@keyframes float-dot-1 {
|
||||
0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
|
||||
50% { transform: translateY(-40px) translateX(15px); opacity: 0.3; }
|
||||
}
|
||||
|
||||
@keyframes float-dot-2 {
|
||||
0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
|
||||
50% { transform: translateY(-30px) translateX(-20px); opacity: 0.35; }
|
||||
}
|
||||
|
||||
@keyframes float-dot-3 {
|
||||
0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
|
||||
50% { transform: translateY(-35px) translateX(10px); opacity: 0.25; }
|
||||
}
|
||||
|
||||
.animate-fade-in {
|
||||
animation: fade-in 0.6s ease-out forwards;
|
||||
}
|
||||
|
||||
.animate-fade-in-up {
|
||||
opacity: 0;
|
||||
animation: fade-in-up 0.6s ease-out forwards;
|
||||
}
|
||||
|
||||
.animate-float-1 {
|
||||
animation: float-1 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.animate-float-2 {
|
||||
animation: float-2 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.animate-float-3 {
|
||||
animation: float-3 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.animate-float-dot-1 {
|
||||
animation: float-dot-1 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.animate-float-dot-2 {
|
||||
animation: float-dot-2 2.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.animate-float-dot-3 {
|
||||
animation: float-dot-3 3s ease-in-out infinite;
|
||||
}
|
||||
Reference in New Issue
Block a user