feat(blog): Phase 5 SEO/GEO content with 5 new blog posts
Add 5 long-form Thai blog posts (1,200-2,500 words each) with SEO + GEO optimization for the dealplustech water-systems site. Each post targets a specific audience (contractors, engineers, project managers) and follows a content-quality workflow: source real product specs, verify Thai text, dedupe images, link back to product pages. ## New blog posts (src/content/blog/) - thermobreak-guide.md (Thermobreak closed-cell insulation overview) - plastic-grilles-guide.md (ABS plastic grilles for HVAC) - ppr-pipe-guide.md (PPR pipe properties + heat-fusion welding) - ppr-vs-hdpe-vs-upvc.md (3-way pipe comparison with PE80/PE100) - thermobreak-series-guide.md (Thermobreak LS vs Solar series) - 10-things-checklist-pipe-ordering.md (10-point pre-order checklist) ## Removed legacy posts - pipe-knowledge.md, valve-guide.md, welcome-post.md (orphans) ## Hero images (public/images/blog/) ~20 product photos sourced from manufacturers (Thermobreak, Thai PPR, thaiconsupply) plus Nano Banana Pro infographics. All resized to 3:2 aspect ratio per user preference. Source folder preserved for re-derivation. ## Astro layout/SEO work - src/components/seo/SEO.astro, JsonLd.astro (new SEO components) - src/layouts/BaseLayout.astro, Layout.astro (OG/Twitter/JSON-LD wiring) - src/pages/404.astro - Product pages (8): added #pricelist anchors + schema work - src/styles/global.css: scroll-padding for sticky-header anchors ## Automation scripts (scripts/) - build_og_image.py (OG image builder) - inject_faq_schema.py, inject_product_schema.py (JSON-LD injection) ## Misc - public/robots.txt, public/images/og/default-og.jpg - .gitignore: exclude scripts/__pycache__/
This commit is contained in:
@@ -2,7 +2,33 @@
|
||||
import BaseLayout from '@/layouts/BaseLayout.astro';
|
||||
---
|
||||
|
||||
<BaseLayout title="ท่อ UPVC (Unplasticized Polyvinyl Chloride)" description="ท่อ UPVC ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร ปริมณฑล ท่อยูพีวีซี ทนสารเคมี ทนความร้อน สำหรับงานอุตสาหกรรม">
|
||||
<BaseLayout
|
||||
title="ท่อ UPVC (Unplasticized Polyvinyl Chloride)"
|
||||
description="ท่อ UPVC ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร ปริมณฑล ท่อยูพีวีซี ทนสารเคมี ทนความร้อน สำหรับงานอุตสาหกรรม"
|
||||
product={{
|
||||
name: 'ท่อ UPVC (Unplasticized Polyvinyl Chloride)',
|
||||
image: '/images/products-cropped/upvc-pipe_000C.jpg',
|
||||
brand: 'UPVC',
|
||||
}}
|
||||
howTo={{
|
||||
name: 'วิธีติดตั้งท่อ UPVC ด้วยกาว',
|
||||
description: 'ขั้นตอนการติดตั้งท่อ UPVC ด้วยกาวเชื่อมต่อ เหมาะสำหรับงานเดินท่อน้ำเสียและท่อสารเคมี',
|
||||
totalTime: 'PT30M',
|
||||
steps: [
|
||||
'วัดและตัดท่อตามความยาวที่ต้องการ ใช้เลื่อยตัดท่อหรือใบมีดตัดท่อ',
|
||||
'เช็ดทำความสะอาดปลายท่อและข้อต่อให้ปราศจากฝุ่นและคราบน้ำมัน',
|
||||
'ทาน้ำยาทำความสะอาด (Primer) บนปลายท่อและภายในข้อต่อ รอให้แห้ง 5-10 วินาที',
|
||||
'ทากาว UPVC บนปลายท่อและภายในข้อต่ออย่างสม่ำเสมอ',
|
||||
'สวมปลายท่อเข้ากับข้อต่อ แล้วหมุน 1/4 รอบ กดค้างไว้ 30 วินาที',
|
||||
'เช็ดกาวส่วนเกินออก รอ 24 ชั่วโมงก่อนทดสอบแรงดันน้ำ',
|
||||
],
|
||||
}}
|
||||
|
||||
faq={[
|
||||
{ question: 'ท่อ UPVC ต่างจากท่อ PVC อย่างไร?', answer: 'UPVC (Unplasticized PVC) ไม่มีสารเพิ่มพลาสติไซเซอร์ ทำให้แข็งและทนสารเคมีได้ดีกว่า PVC ธรรมดา ทนอุณหภูมิได้สูงกว่า 5-10°C เหมาะกับงานอุตสาหกรรม' },
|
||||
{ question: 'ใช้ท่อ UPVC กับน้ำดื่มได้ไหม?', answer: 'ไม่แนะนำ สำหรับงานน้ำดื่มควรใช้ท่อ PPR หรือท่อสแตนเลส เพราะ UPVC อาจปล่อยสารตกค้างเมื่อใช้กับน้ำอุ่นเป็นเวลานาน' },
|
||||
{ question: 'ราคาเทียบกับท่อเหล็ก?', answer: 'ท่อ UPVC มีราคาถูกกว่าท่อเหล็ก 30-50% ติดตั้งง่ายกว่า น้ำหนักเบากว่า 5-10 เท่า แต่ทนแรงดันได้น้อยกว่า เหมาะกับงานแรงดันต่ำถึงปานกลาง' },
|
||||
]}>
|
||||
<main class="bg-white min-h-screen">
|
||||
<!-- Hero Section -->
|
||||
<section class="relative bg-gradient-to-br from-primary-800 via-primary-700 to-primary-900 text-white py-16 lg:py-24 overflow-hidden">
|
||||
@@ -134,6 +160,93 @@ import BaseLayout from '@/layouts/BaseLayout.astro';
|
||||
<p class="text-lg text-neutral-700 mb-6">
|
||||
ท่อ UPVC มีขนาดตั้งแต่ <strong>1/2"</strong> ไปจนถึง <strong>12"</strong> เหมาะสำหรับงานอุตสาหกรรมและงานระบายน้ำทิ้ง
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl font-bold text-primary-700 mt-8 mb-4">เปรียบเทียบ UPVC vs PVC vs PPR</h3>
|
||||
<p class="text-lg text-neutral-700 mb-4">
|
||||
การเลือกท่อพลาสติกให้เหมาะกับงานจำเป็นต้องเข้าใจความแตกต่างของวัสดุแต่ละชนิด:
|
||||
</p>
|
||||
<div class="overflow-x-auto mb-6">
|
||||
<table class="min-w-full text-left border border-neutral-200 rounded-lg">
|
||||
<thead class="bg-primary-50">
|
||||
<tr>
|
||||
<th class="px-4 py-3 font-semibold text-primary-700 border-b">คุณสมบัติ</th>
|
||||
<th class="px-4 py-3 font-semibold text-primary-700 border-b">UPVC</th>
|
||||
<th class="px-4 py-3 font-semibold text-primary-700 border-b">PVC</th>
|
||||
<th class="px-4 py-3 font-semibold text-primary-700 border-b">PPR</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-neutral-700">
|
||||
<tr>
|
||||
<td class="px-4 py-3 border-b font-medium">ทนความร้อนสูงสุด</td>
|
||||
<td class="px-4 py-3 border-b">60°C</td>
|
||||
<td class="px-4 py-3 border-b">55°C</td>
|
||||
<td class="px-4 py-3 border-b text-primary-700 font-semibold">95°C</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-3 border-b font-medium">ทนสารเคมี</td>
|
||||
<td class="px-4 py-3 border-b text-primary-700 font-semibold">ดีเยี่ยม</td>
|
||||
<td class="px-4 py-3 border-b">ปานกลาง</td>
|
||||
<td class="px-4 py-3 border-b">ดี</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-3 border-b font-medium">ใช้กับน้ำดื่ม</td>
|
||||
<td class="px-4 py-3 border-b">ไม่แนะนำ</td>
|
||||
<td class="px-4 py-3 border-b text-amber-700">ขึ้นอยู่กับเกรด</td>
|
||||
<td class="px-4 py-3 border-b text-primary-700 font-semibold">เหมาะ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-3 border-b font-medium">การเชื่อมต่อ</td>
|
||||
<td class="px-4 py-3 border-b">กาว UPVC</td>
|
||||
<td class="px-4 py-3 border-b">กาว PVC</td>
|
||||
<td class="px-4 py-3 border-b">เชื่อมความร้อน (Heat fusion)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-3 font-medium">การใช้งานหลัก</td>
|
||||
<td class="px-4 py-3">ท่อน้ำเสีย, ท่อสารเคมี</td>
|
||||
<td class="px-4 py-3">ท่อระบายน้ำ, ท่อร้อยสาย</td>
|
||||
<td class="px-4 py-3">ท่อน้ำร้อน-เย็น, น้ำดื่ม</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p class="text-lg text-neutral-700 mb-6">
|
||||
<strong>สรุป:</strong> UPVC เหมาะกับงานที่ต้องทนสารเคมีและอุณหภูมิปานกลาง PPR เหมาะกับงานน้ำร้อนและน้ำดื่ม PVC ธรรมดาเหมาะกับงานระบายน้ำทั่วไป
|
||||
</p>
|
||||
|
||||
<h3 class="text-xl font-bold text-primary-700 mt-8 mb-4">การใช้งานตามอุตสาหกรรม</h3>
|
||||
<ul class="list-disc pl-6 mb-6 space-y-2 text-neutral-700">
|
||||
<li><strong>โรงงานเคมี:</strong> ท่อส่งสารเคมี กรด ด่าง ระบบบำบัดน้ำเสีย</li>
|
||||
<li><strong>ห้องเย็น/ห้องแช่แข็ง:</strong> ท่อส่งน้ำเย็นที่ไม่ต้องการการนำความร้อนสูง</li>
|
||||
<li><strong>ห้องปฏิบัติการ/ห้องแล็บ:</strong> ท่อระบายน้ำทิ้งที่ปนเปื้อนสารเคมี</li>
|
||||
<li><strong>สระว่ายน้ำ:</strong> ท่อน้ำที่มีคลอรีน ระบบกรองทนต่อสารฆ่าเชื้อ</li>
|
||||
<li><strong>งานระบายน้ำอาคาร:</strong> ท่อน้ำทิ้ง ท่ออากาศ ระบบบำบัดน้ำเสียชุมชน</li>
|
||||
</ul>
|
||||
|
||||
<h3 class="text-xl font-bold text-primary-700 mt-8 mb-4">ขั้นตอนการติดตั้งท่อ UPVC</h3>
|
||||
<ol class="list-decimal pl-6 mb-6 space-y-2 text-neutral-700">
|
||||
<li>วัดและตัดท่อตามความยาวที่ต้องการ ใช้เลื่อยตัดท่อหรือใบมีดตัดท่อ</li>
|
||||
<li>เช็ดทำความสะอาดปลายท่อและข้อต่อให้ปราศจากฝุ่นและคราบน้ำมัน</li>
|
||||
<li>ทาน้ำยาทำความสะอาด (Primer) บนปลายท่อและภายในข้อต่อ รอให้แห้ง 5-10 วินาที</li>
|
||||
<li>ทากาว UPVC บนปลายท่อและภายในข้อต่ออย่างสม่ำเสมอ</li>
|
||||
<li>สวมปลายท่อเข้ากับข้อต่อ แล้วหมุน 1/4 รอบ กดค้างไว้ 30 วินาที</li>
|
||||
<li>เช็ดกาวส่วนเกินออก รอ 24 ชั่วโมงก่อนทดสอบแรงดันน้ำ</li>
|
||||
</ol>
|
||||
|
||||
<h3 class="text-xl font-bold text-primary-700 mt-8 mb-4">คำถามที่พบบ่อยเกี่ยวกับท่อ UPVC</h3>
|
||||
<div class="space-y-4 mb-6">
|
||||
<div class="bg-neutral-50 rounded-lg p-4">
|
||||
<h4 class="font-semibold text-neutral-800 mb-2">Q: ท่อ UPVC ต่างจากท่อ PVC อย่างไร?</h4>
|
||||
<p class="text-neutral-700">UPVC (Unplasticized PVC) ไม่มีสารเพิ่มพลาสติไซเซอร์ ทำให้แข็งและทนสารเคมีได้ดีกว่า PVC ธรรมดา ทนอุณหภูมิได้สูงกว่า 5-10°C เหมาะกับงานอุตสาหกรรม</p>
|
||||
</div>
|
||||
<div class="bg-neutral-50 rounded-lg p-4">
|
||||
<h4 class="font-semibold text-neutral-800 mb-2">Q: ใช้ท่อ UPVC กับน้ำดื่มได้ไหม?</h4>
|
||||
<p class="text-neutral-700">ไม่แนะนำ สำหรับงานน้ำดื่มควรใช้ท่อ PPR หรือท่อสแตนเลส เพราะ UPVC อาจปล่อยสารตกค้างเมื่อใช้กับน้ำอุ่นเป็นเวลานาน</p>
|
||||
</div>
|
||||
<div class="bg-neutral-50 rounded-lg p-4">
|
||||
<h4 class="font-semibold text-neutral-800 mb-2">Q: ราคาเทียบกับท่อเหล็ก?</h4>
|
||||
<p class="text-neutral-700">ท่อ UPVC มีราคาถูกกว่าท่อเหล็ก 30-50% ติดตั้งง่ายกว่า น้ำหนักเบากว่า 5-10 เท่า แต่ทนแรงดันได้น้อยกว่า เหมาะกับงานแรงดันต่ำถึงปานกลาง</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user