--- import Layout from '../layouts/Layout.astro' import Breadcrumbs from '../components/Breadcrumbs.astro' const services = [ { href: '/web-development', icon: '🌐', title: 'AI-Enhanced Website', desc: 'ออกแบบและพัฒนาเว็บไซต์ที่ทันสมัย ผสาน AI Chatbot และ SEO' }, { href: '/marketing-automation', icon: '🔄', title: 'Marketing Automation', desc: 'ตั้งค่าระบบการตลาดอัตโนมัติ รวม SEO, Social Media, Ads และ Email' }, { href: '/tech-consult', icon: '🖥️', title: 'Tech Infrastructure Consult', desc: 'ให้คำปรึกษาระบบ Server, Data Pipeline และเลือกเครื่องมือ Tech' }, { href: '/ai-automation', icon: '⚙️', title: 'AI Automation', desc: 'นำ Chatbot และ Workflow Automation มาใช้ ตอบลูกค้า 24/7' }, ] const pages = [ { href: '/', title: 'หน้าแรก' }, { href: '/about-us', title: 'เกี่ยวกับเรา' }, { href: '/contact-us', title: 'ติดต่อเรา' }, { href: '/faq', title: 'คำถามที่พบบ่อย' }, { href: '/blog', title: 'บทความ' }, ] ---

แผนผังเว็บไซต์

รวบรวมทุกหน้าของเว็บไซต์ MoreminiMore เพื่อการเข้าถึงข้อมูลที่สะดวก

หน้าหลัก

{pages.map((page) => (
{page.title}
{page.href}
))}

บริการของเรา

{services.map((service) => (
{service.icon}
{service.title}
{service.desc}
))}