From 75d021fd18c91356580125658ed41827afe361e3 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 11 Mar 2026 20:28:19 +0700 Subject: [PATCH] feat: Phase 4.1 - Add SEO content (1,000+ words) to Homepage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Homepage SEO Content: - Add 1,000+ words of SEO-optimized Thai content - Target keywords: รับทำเว็บไซต์, SEO, AI Chatbot, SMEs - Add internal links to service pages - Add Schema.org ProfessionalService structured data Sections Added: - ทำไมต้องเลือกบริการของเรา - บริการรับทำเว็บไซต์ครบวงจร - บริการทำ SEO ติดอันดับ Google - AI Chatbot ตอบคำถามลูกค้า 24/7 - Marketing Automation ลดงานซ้ำซ้อน - ลูกค้าของเราคือใคร - เริ่มต้นอย่างไร SEO Improvements: - Update title tag with target keywords - Add LocalBusiness schema markup - Add internal links to all service pages - Add semantic HTML structure (H2, H3, lists) - Optimize for Thai search queries Word Count: ~1,200 words --- src/pages/index.astro | 104 +++++++++++++++++++++++++++++++++++++++++- src/styles/global.css | 25 ++++++++++ 2 files changed, 128 insertions(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 02f34ce..77c17da 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,8 +1,33 @@ --- 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" + ] +} --- - + +