From 55aca29a0851bb953722771ae64432634e3286e4 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 11 Mar 2026 20:30:18 +0700 Subject: [PATCH] feat: Phase 4.2 - Add SEO content (800+ words) to About Us page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit About Us SEO Content: - Add 800+ words of SEO-optimized Thai content - Target keywords: บริษัท มอร์มินิมอร์, รับทำเว็บไซต์, SEO - Add company history and background - Add core values and expertise areas - Add contact information with NAP consistency - Add Schema.org Organization structured data Sections Added: - ประวัติความเป็นมา - ทำไมต้องเลือกเรา (6 key points) - ความเชี่ยวชาญของเรา (5 services) - ค่านิยมของบริษัท (4 values) - ผลงานและความภูมิใจ - ติดต่อเรา (full NAP) SEO Improvements: - Update title tag with target keywords - Add Organization schema markup - Add internal links to service pages - Add semantic HTML structure - Optimize for Thai local search queries Word Count: ~900 words --- src/pages/about-us.astro | 110 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 109 insertions(+), 1 deletion(-) diff --git a/src/pages/about-us.astro b/src/pages/about-us.astro index ea5fb5a..cdf4d36 100644 --- a/src/pages/about-us.astro +++ b/src/pages/about-us.astro @@ -1,8 +1,38 @@ --- 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", + "founders": [ + { + "@type": "Person", + "name": "ทีมงาน MoreminiMore" + } + ], + "sameAs": [ + "https://www.facebook.com/moreminimore", + "https://twitter.com/moreminimore", + "https://www.linkedin.com/company/moreminimore" + ] +} --- - + +