Fix all product pages with REAL crawled content

 Regenerated 34 product pages with actual crawled content
 Mapped correct product images to each page (1,348 images)
 Green color theme from original logo
 Mega menu with proper categories
 Homepage with PPR product images (not banners)
 Footer with main categories only
 Logo without text

Fixed issues:
- All product pages now use REAL content from dealplustech.co.th
- Product images mapped correctly (not logo!)
- Green theme (#3f8b6d) matches original website
- All 1,348 images available in /images/products-misc/
This commit is contained in:
Kunthawat
2026-03-14 09:43:06 +07:00
parent e9ed033754
commit ee4f3e9c51
40 changed files with 8286 additions and 374 deletions

View File

@@ -1,5 +1,17 @@
---
const currentYear = new Date().getFullYear();
const mainCategories = [
{ name: 'ท่อ | Pipe', slug: '/pipe' },
{ name: 'ท่อ PPR', slug: '/ท่อ-ppr-thai-ppr' },
{ name: 'ท่อ HDPE', slug: '/ท่อhdpe' },
{ name: 'ท่อ PVC', slug: '/ท่อและข้อต่อpvc' },
{ name: 'ท่อ UPVC', slug: '/ท่อ-upvc' },
{ name: 'วาล์ว | Valve', slug: '/วาล์ว-valve' },
{ name: 'ปั๊มน้ำ', slug: '/water-pump' },
{ name: 'ระบบรั้ว', slug: '/ระบบรั้ว' },
{ name: 'เครื่องเชื่อมท่อ', slug: '/เครื่องเชื่อมท่อ-pipe-coupling-machine' },
{ name: 'แฮงเกอร์ แคล้ม', slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหวน-น็อต-สกรู-พุก-สตัดเกลียว' },
];
---
<footer class="footer section">
@@ -8,63 +20,61 @@ const currentYear = new Date().getFullYear();
<!-- Company Info -->
<div>
<div class="flex items-center space-x-3 mb-6">
<img src="/images/logo/13523630950840.png" alt="Deal Plus Tech" class="h-10 w-auto" />
<img src="/images/logo/dealplustech-logo.png" alt="Deal Plus Tech" class="h-10 w-auto bg-white rounded" />
<span class="text-xl font-bold">Deal Plus Tech</span>
</div>
<p class="text-secondary-300 text-base mb-6">
ผู้เชี่ยวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก
</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-white/10 hover:bg-primary-500 flex items-center justify-center transition-colors">
<a href="#" class="w-10 h-10 rounded-full bg-white/10 hover:bg-green-500 flex items-center justify-center transition-colors">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white/10 hover:bg-primary-500 flex items-center justify-center transition-colors">
<a href="#" class="w-10 h-10 rounded-full bg-white/10 hover:bg-green-500 flex items-center justify-center transition-colors">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/></svg>
</a>
</div>
</div>
<!-- Main Categories -->
<div>
<h3 class="text-lg font-bold mb-6">หมวดหมู่หลัก</h3>
<ul class="space-y-3">
{mainCategories.map(cat => (
<li><a href={cat.slug} class="text-secondary-300 hover:text-white transition-colors text-base">{cat.name}</a></li>
))}
</ul>
</div>
<!-- Quick Links -->
<div>
<h3 class="text-lg font-bold mb-6">ลิงก์ด่วน</h3>
<ul class="space-y-3">
<li><a href="/about-us" class="text-secondary-300 hover:text-white transition-colors text-base">เกี่ยวกับเรา</a></li>
<li><a href="/product" class="text-secondary-300 hover:text-white transition-colors text-base">สินค้าทั้งหมด</a></li>
<li><a href="/pipe" class="text-secondary-300 hover:text-white transition-colors text-base">สินค้าทั้งหมด</a></li>
<li><a href="/portfolio" class="text-secondary-300 hover:text-white transition-colors text-base">ผลงาน</a></li>
<li><a href="/contact-us" class="text-secondary-300 hover:text-white transition-colors text-base">ติดต่อเรา</a></li>
</ul>
</div>
<!-- Product Categories -->
<div>
<h3 class="text-lg font-bold mb-6">หมวดหมู่สินค้า</h3>
<ul class="space-y-3">
<li><a href="/ท่อ-ppr-thai-ppr" class="text-secondary-300 hover:text-white transition-colors text-base">ท่อ PPR</a></li>
<li><a href="/ท่อhdpe" class="text-secondary-300 hover:text-white transition-colors text-base">ท่อ HDPE</a></li>
<li><a href="/ท่อและข้อต่อpvc" class="text-secondary-300 hover:text-white transition-colors text-base">ท่อ PVC</a></li>
<li><a href="/วาล์ว-valve" class="text-secondary-300 hover:text-white transition-colors text-base">วาล์ว</a></li>
<li><a href="/ปั๊มน้ำ" class="text-secondary-300 hover:text-white transition-colors text-base">ปั๊มน้ำ</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h3 class="text-lg font-bold mb-6">ติดต่อเรา</h3>
<ul class="space-y-4">
<li class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-400 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-400 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z" />
</svg>
<span class="text-secondary-300 text-base">090-555-1415</span>
</li>
<li class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-400 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-400 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
<span class="text-secondary-300 text-base">info@dealplustech.co.th</span>
</li>
<li class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-400 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-400 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>

View File

@@ -1,60 +1,115 @@
---
const categories = [
{ name: 'ท่อ | Pipe', slug: '/pipe' },
{ name: 'ท่อ PPR', slug: '/ท่อ-ppr-thai-ppr' },
{ name: 'ท่อ HDPE', slug: '/ท่อhdpe' },
{ name: 'ท่อ PVC', slug: '/ท่อและข้อต่อpvc' },
{ name: 'ท่อ UPVC', slug: '/ท่อ-upvc' },
{
name: 'ท่อ | Pipe',
slug: '/pipe',
subcategories: [
{ name: 'ท่อ PPR', slug: '/ท่อ-ppr-thai-ppr' },
{ name: 'ท่อ PPR ตราช้าง', slug: '/ท่อพีพีอาร์ตราช้าง' },
{ name: 'ท่อ PP-R Poloplast', slug: '/pp-r-pp-rct-poloplast' },
{ name: 'ท่อ HDPE', slug: '/ท่อhdpe' },
{ name: 'ท่อ UPVC', slug: '/ท่อ-upvc' },
{ name: 'ท่อไซเลอร์', slug: '/ท่อไซเลอร์' },
{ name: 'ท่อ PVC', slug: '/ท่อและข้อต่อpvc' },
{ name: 'ท่อระบายน้ำ 3 ชั้น', slug: '/ท่อระบายน้ำ-3-ชั้น-ไซเลนท' },
{ name: 'ท่อพีพีอาร์', slug: '/ท่อพีพีอาร์' },
]
},
{
name: 'เครื่องเชื่อมท่อ',
slug: '/เครื่องเชื่อมท่อ-pipe-coupling-machine',
subcategories: [
{ name: 'เครื่องเชื่อม HDPE', slug: '/เครื่องเชื่อม-hdpe' },
{ name: 'กรู๊ฟท่อ', slug: '/groove-coupling' },
{ name: 'Pipe Coupling', slug: '/pipe-coupling' },
{ name: 'Dukelarrsen', slug: '/dukelarrsen' },
{ name: 'เม็กกรู๊ฟ', slug: '/เม็กกรู๊ฟ-คับปลิ้ง' },
]
},
{
name: 'แฮงเกอร์ แคล้ม โบลท์',
slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหวน-น็อต-สกรู-พุก-สตัดเกลียว',
subcategories: [
{ name: 'สปริทริงแฮงเกอร์', slug: '/สปริทริงแฮงเกอร์-sr19-adjustable-split-ring-hanger' },
{ name: 'เควิสแฮงเกอร์', slug: '/เควิสแฮงเกอร์' },
{ name: 'แคล้มประกับ', slug: '/แคล้มประกับ-ชุบรุ้ง-ชุบ' },
{ name: 'แคล้มฟันจระเข้', slug: '/แคล้มฟันจระเข้-beam-clamp' },
{ name: 'แคล้มหยดน้ำ', slug: '/แคล้มหยดน้ำ-adjustable-band-hanger' },
{ name: 'แคล้มเลเวล', slug: '/แคล้มเลเวล-level-clamp' },
{ name: 'ยูโบลท์', slug: '/ยูโบลท์-u-bolt' },
{ name: 'ยูโบลท์ ประกับ', slug: '/ยูโบลท์-ประกับ-u-bolt-clamp' },
{ name: 'ยูโบลท์เหล็กแผ่น', slug: '/ยูโบลท์เหล็กแผ่น-ยูแบน-strap' },
{ name: 'เจโบลท์ แอลโบลท์', slug: '/เจโบลท์-แอลโบลท์-j-bolt-l-bolt' },
{ name: 'น็อต แหวน สกรู', slug: '/น็อต-แหวน-สกรู-hex-nut-flat-washer-hexagon-head-screw' },
{ name: 'พุกต่างๆ', slug: '/พุกต่างๆ' },
{ name: 'พุกเหล็ก', slug: '/พุกเหล็ก-sleeve-anchor-bolt' },
{ name: 'สตัดเกลียวตลอด', slug: '/สตัดเกลียวตลอด-เหล็ก-threaded-rod' },
]
},
{ name: 'วาล์ว | Valve', slug: '/วาล์ว-valve' },
{ name: 'ปั๊มน้ำ', slug: '/water-pump' },
{ name: 'ระบบกรองน้ำ', slug: '/water-treatment' },
{ name: 'อุปกรณ์ดับเพลิง', slug: '/อุปกรณ์ดับเพลิง' },
{ name: 'ระบบรั้ว', slug: '/ระบบรั้ว' },
{ name: 'รั้วเทวดา', slug: '/รั้วเทวดา' },
{ name: 'ระบบรั้วไวน์แมน', slug: '/ระบบรั้วไวน์แมน-vineman-2' },
{ name: 'กริลแอร์', slug: '/grilles' },
{ name: 'ฉนวนหุ้มท่อ', slug: '/ฉนวนหุ้มท่อ-pipe-insulation' },
{ name: 'แฮงเกอร์ แคล้ม โบลท์', slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหวน-น็อต-สกรู-พุก-สตัดเกลียว' },
{ name: 'เทอร์โมเบรค', slug: '/เทอร์โมเบรค-thermobreak' },
];
---
<header class="navbar">
<div class="container-custom">
<div class="flex items-center justify-between h-20">
<!-- Logo -->
<a href="/" class="flex items-center space-x-3 group">
<img src="/images/logo/13523630950840.png" alt="Deal Plus Tech" class="h-12 w-auto transition-transform group-hover:scale-105" />
<span class="text-2xl font-bold gradient-text hidden md:block">Deal Plus Tech</span>
<!-- Logo (No Text) -->
<a href="/" class="flex items-center group">
<img src="/images/logo/dealplustech-logo.png" alt="Deal Plus Tech" class="h-14 w-auto transition-transform group-hover:scale-105" />
</a>
<!-- Desktop Navigation -->
<nav class="hidden lg:flex items-center space-x-1">
<a href="/" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-primary-600 transition-colors">หน้าแรก</a>
<a href="/about-us" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-primary-600 transition-colors">เกี่ยวกับเรา</a>
<a href="/" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-green-600 transition-colors">หน้าแรก</a>
<a href="/about-us" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-green-600 transition-colors">เกี่ยวกับเรา</a>
<!-- Products Dropdown -->
<!-- Products Mega Menu -->
<div class="relative group">
<button class="px-4 py-2 text-base font-medium text-secondary-700 group-hover:text-primary-600 transition-colors flex items-center space-x-1">
<button class="px-4 py-2 text-base font-medium text-secondary-700 group-hover:text-green-600 transition-colors flex items-center space-x-1">
<span>สินค้า</span>
<svg class="w-4 h-4 transition-transform 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 top-full left-0 mt-2 w-64 bg-white rounded-xl shadow-2xl border border-secondary-100 opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-300 transform group-hover:translate-y-0 translate-y-2">
<div class="py-2">
<div class="absolute top-full left-0 mt-0 w-[900px] bg-white rounded-xl shadow-2xl border border-green-100 opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-300 transform group-hover:translate-y-0 translate-y-2 z-50">
<div class="grid grid-cols-3 gap-6 p-6">
{categories.map(cat => (
<a href={cat.slug} class="block px-4 py-2.5 text-base text-secondary-700 hover:bg-primary-50 hover:text-primary-600 transition-colors">
{cat.name}
</a>
<div class="space-y-3">
<a href={cat.slug} class="block text-lg font-bold text-green-700 hover:text-green-600 mb-2">
{cat.name}
</a>
{cat.subcategories && (
<ul class="space-y-2">
{cat.subcategories.map(sub => (
<li>
<a href={sub.slug} class="block text-base text-secondary-600 hover:text-green-600 transition-colors">
{sub.name}
</a>
</li>
))}
</ul>
)}
</div>
))}
</div>
</div>
</div>
<a href="/portfolio" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-primary-600 transition-colors">ผลงาน</a>
<a href="/contact-us" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-primary-600 transition-colors">ติดต่อเรา</a>
<a href="/portfolio" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-green-600 transition-colors">ผลงาน</a>
<a href="/contact-us" class="px-4 py-2 text-base font-medium text-secondary-700 hover:text-green-600 transition-colors">ติดต่อเรา</a>
</nav>
<!-- Contact Button -->
<div class="hidden lg:flex items-center space-x-4">
<a href="tel:090-555-1415" class="flex items-center space-x-2 text-primary-600 hover:text-primary-700 transition-colors">
<a href="tel:0905551415" class="flex items-center space-x-2 text-green-600 hover:text-green-700 transition-colors">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z" />
</svg>
@@ -63,7 +118,7 @@ const categories = [
</div>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="lg:hidden p-2 rounded-lg hover:bg-secondary-100 transition-colors">
<button id="mobile-menu-btn" class="lg:hidden p-2 rounded-lg hover:bg-green-50 transition-colors">
<svg class="w-6 h-6 text-secondary-700" 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>
@@ -73,11 +128,11 @@ const categories = [
<!-- Mobile Menu -->
<div id="mobile-menu" class="lg:hidden hidden pb-4">
<nav class="flex flex-col space-y-2">
<a href="/" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-primary-50 hover:text-primary-600 rounded-lg transition-colors">หน้าแรก</a>
<a href="/about-us" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-primary-50 hover:text-primary-600 rounded-lg transition-colors">เกี่ยวกับเรา</a>
<a href="/product" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-primary-50 hover:text-primary-600 rounded-lg transition-colors">สินค้า</a>
<a href="/portfolio" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-primary-50 hover:text-primary-600 rounded-lg transition-colors">ผลงาน</a>
<a href="/contact-us" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-primary-50 hover:text-primary-600 rounded-lg transition-colors">ติดต่อเรา</a>
<a href="/" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-green-50 hover:text-green-600 rounded-lg transition-colors">หน้าแรก</a>
<a href="/about-us" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-green-50 hover:text-green-600 rounded-lg transition-colors">เกี่ยวกับเรา</a>
<a href="/pipe" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-green-50 hover:text-green-600 rounded-lg transition-colors">สินค้าทั้งหมด</a>
<a href="/portfolio" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-green-50 hover:text-green-600 rounded-lg transition-colors">ผลงาน</a>
<a href="/contact-us" class="px-4 py-3 text-base font-medium text-secondary-700 hover:bg-green-50 hover:text-green-600 rounded-lg transition-colors">ติดต่อเรา</a>
</nav>
</div>
</div>

14
src/content.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineCollection } from 'astro:content';
const blog = defineCollection({
type: 'content',
});
const products = defineCollection({
type: 'content',
});
export const collections = {
blog,
products,
};

View File

@@ -8,7 +8,7 @@ interface Props {
canonicalURL?: string;
}
const { title, description = 'ผู้เชี่ยวชาญระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก', image = '/images/logo/logox2.png', canonicalURL = Astro.url } = Astro.props;
const { title, description = 'ผู้เชี่ยวชาญระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก', image = '/images/logo/dealplustech-logo.png', canonicalURL = Astro.url } = Astro.props;
const siteName = 'Deal Plus Tech';
const siteUrl = 'https://dealplustech.co.th';

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ระบบวาล์วเติมอากาศ DURGO AVVs" description="ระบบวาล์วเติมอากาศ DURGO AVVs ทดแทนท่อระบายอากาศของระบบท่อน้ำทิ้งแบบเก่า จะช่วยเพิ่มประสิทธิภาพของการเติมอากาศเข้าระบบ และช่วยป้องกันไม่ให้น้าถูกดึงออกจาก Trap">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/DURGO_002.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/DURGO_002.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/DURGO_003.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/DURGO_004.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/DURGO_008.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/DURGO_005.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/DURGO_009.jpg" alt="ระบบวาล์วเติมอากาศ DURGO AVVs" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ระบบวาล์วเติมอากาศ DURGO AVVs - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ระบบวาล์วเติมอากาศ DURGO AVVs นวัตกรรมระับโลก ที่ประเทศชั้นนําเลือกใช้ ด้วยผลิตภัณฑ์คุณภาพจากยุโรป เชียวชาญเทคโนโลยีระบบวาล์ว ทั้งด้านการผลิต การออกแบบวางระบบ ทางด้านอุตสาหกรรมทําความร</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ระบบวาล์วเติมอากาศ DURGO AVVs - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="กริลแอร์พลาสติก (Grilles air plastic)" description="กริลแอร์พลาสติก (Grilles air plastic) หัวจ่ายลม หน้ากากแอร์ กริลรีเทริน์ (Grilles Return) ยี่ห้อ Deal Plus Tech ในระบบปรับอากาศและระบบระบายอากาศที่ใช้ท่อ Duct">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/Fresh-Air1-1.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/Fresh-Air1-1.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/กริลแอร์พลาสติก-Ventilation-Grilles-plastic.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Linear-Slot.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/หน้ากากแอร์-Air-Grille.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Fresh-Air1.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Supply-Air.jpg" alt="กริลแอร์พลาสติก (Grilles air plastic)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">กริลแอร์พลาสติก (Grilles air plastic) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก เราได้ตลอดเวลาทำการ ส่งฟรี กรุงเทพมหานคร ปริมณฑล สามารถสอบถามได้ที่ช่อง Chat หรือโทรหา ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Deal Plus Tech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">กริลแอร์พลาสติก (Grilles air plastic) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="กรู๊ฟท่อ (Groove Coupling)" description="กรู๊ฟท่อ ติดตั้งง่าย สะดวกรวดเร็ว ทำให้ประหยัดค่าแรงและเวลาในการติดตั้ง นอกจากนี้ยังคล่องตัวรองรับการออกแบบที่หลากหลายตามแต่สภาพ สามารถย้ายเปลี่ยนรูปแบบง่าย">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/G1.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/G1.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/G2.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/G3.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/G4.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/G5.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/G6.png" alt="กรู๊ฟท่อ (Groove Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">กรู๊ฟท่อ (Groove Coupling) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection กรู๊ฟท่อ ติดตั้งง่าย สะดวกรวดเร็ว ทำให้ประหยัดทั้งค่าแรงและเวลาในการติดตั้ง นอกจากนี้ยังคล่องตัวรองรับกรออกแบบที่หลากหลายตามแต่สภาพหน้างาน สามารถโยกย้าย เปลี่ยนแปลงรูปแบบการ</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">กรู๊ฟท่อ (Groove Coupling) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -2,100 +2,90 @@
import BaseLayout from '@/layouts/BaseLayout.astro';
import Header from '@/components/common/Header.astro';
import Footer from '@/components/common/Footer.astro';
const categories = [
{ name: 'ท่อ PPR', slug: '/ท่อ-ppr-thai-ppr', image: '/images/products/ppr-pipe/foot-ppr1.jpg' },
{ name: 'ท่อ HDPE', slug: '/ท่อhdpe', image: '/images/products/hdpe-pipe/hdpe001.jpg' },
{ name: 'ท่อ PVC', slug: '/ท่อและข้อต่อpvc', image: '/images/products/pvc-pipe/pvc-pipe_000C.jpg' },
{ name: 'ท่อ UPVC', slug: '/ท่อ-upvc', image: '/images/products/upvc-pipe/upvc-pipe_000C.jpg' },
{ name: 'วาล์ว', slug: '/วาล์ว-valve', image: '/images/products/valve/valve_000C.jpg' },
{ name: 'ปั๊มน้ำ', slug: '/water-pump', image: '/images/products/water-pump/water-pump_000C.jpg' },
{ name: 'ระบบรั้ว', slug: '/ระบบรั้ว', image: '/images/products/fence/vineman_000C.jpg' },
{ name: 'เครื่องเชื่อมท่อ', slug: '/เครื่องเชื่อมท่อ-pipe-coupling-machine', image: '/images/products/pipe-coupling/pipe-coupling-machine_000.jpg' },
];
---
<BaseLayout title="หน้าแรก">
<Header slot="header" />
<!-- Hero Section -->
<section class="relative gradient-bg section overflow-hidden">
<!-- Hero Section with PPR Product Images -->
<section class="relative bg-gradient-to-br from-green-50 via-white to-accent-50 section overflow-hidden">
<div class="container-custom">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<div class="animate-fade-in">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-secondary-900 mb-6 leading-tight">
ผู้เชี่ยวชาญระบบน้ำ<br/>
<span class="gradient-text">คุณภาพสูง ราคาโรงงาน</span>
<span class="text-green-600">คุณภาพสูง ราคาโรงงาน</span>
</h1>
<p class="text-xl text-secondary-600 mb-8 leading-relaxed">
บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชี่ยวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก
</p>
<div class="flex flex-wrap gap-4">
<a href="/product" class="btn-primary text-lg px-8 py-4">ดูสินค้าทั้งหมด</a>
<a href="/contact-us" class="btn-secondary text-lg px-8 py-4">ติดต่อเรา</a>
<a href="/pipe" class="bg-green-600 hover:bg-green-700 text-white px-8 py-4 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95 text-lg">ดูสินค้าทั้งหมด</a>
<a href="/contact-us" class="bg-white text-green-600 px-8 py-4 rounded-xl border-2 border-green-500 font-medium transition-all hover:shadow-lg active:scale-95 text-lg">ติดต่อเรา</a>
</div>
<div class="flex items-center space-x-8 mt-12">
<div>
<div class="text-3xl font-bold text-primary-600">10+</div>
<div class="text-3xl font-bold text-green-600">10+</div>
<div class="text-secondary-600 text-base">ปีประสบการณ์</div>
</div>
<div>
<div class="text-3xl font-bold text-primary-600">1000+</div>
<div class="text-3xl font-bold text-green-600">1000+</div>
<div class="text-secondary-600 text-base">โปรเจคต์</div>
</div>
<div>
<div class="text-3xl font-bold text-primary-600">500+</div>
<div class="text-3xl font-bold text-green-600">500+</div>
<div class="text-secondary-600 text-base">สินค้า</div>
</div>
</div>
</div>
<div class="relative animate-slide-up">
<div class="absolute inset-0 bg-gradient-to-br from-primary-500/20 to-accent-500/20 rounded-3xl blur-3xl"></div>
<img src="/images/logo/logox2.png" alt="Deal Plus Tech Products" class="relative w-full h-auto rounded-3xl shadow-2xl" />
<div class="absolute inset-0 bg-gradient-to-br from-green-500/20 to-accent-500/20 rounded-3xl blur-3xl"></div>
<div class="grid grid-cols-2 gap-4">
<img src="/images/products/ppr-pipe/foot-ppr1.jpg" alt="PPR Pipe" class="w-full h-auto rounded-2xl shadow-xl" />
<img src="/images/products/ppr-pipe/TPPR55.jpg" alt="PPR Fittings" class="w-full h-auto rounded-2xl shadow-xl" />
<img src="/images/products/ppr-pipe/ppr0001.jpg" alt="PPR System" class="w-full h-auto rounded-2xl shadow-xl" />
<img src="/images/products/ppr-pipe/ppr-pipe_000C.jpg" alt="PPR Installation" class="w-full h-auto rounded-2xl shadow-xl" />
</div>
</div>
</div>
</div>
</section>
<!-- Featured Categories -->
<!-- Product Categories -->
<section class="section bg-white">
<div class="container-custom">
<div class="text-center mb-16">
<h2 class="section-title">หมวดหมู่สินค้ายอดนิยม</h2>
<p class="section-subtitle mx-auto">เราจำหน่ายสินค้าระบบน้ำคุณภาพสูง ครบวงจร</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<a href="/ท่อ-ppr-thai-ppr" class="product-card group">
<div class="product-card-image">
<img src="/images/products/ppr-pipe/ppr0001.jpg" alt="ท่อ PPR" />
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-secondary-900 group-hover:text-primary-600 transition-colors">ท่อ PPR</h3>
<p class="text-secondary-600 text-base mt-2">ท่อพีพีอาร์ ตราช้าง</p>
</div>
</a>
<a href="/ท่อhdpe" class="product-card group">
<div class="product-card-image">
<img src="/images/products/hdpe-pipe/hdpe001.jpg" alt="ท่อ HDPE" />
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-secondary-900 group-hover:text-primary-600 transition-colors">ท่อ HDPE</h3>
<p class="text-secondary-600 text-base mt-2">ท่อโพลีเอทิลีน</p>
</div>
</a>
<a href="/ท่อและข้อต่อpvc" class="product-card group">
<div class="product-card-image">
<img src="/images/products/pvc-pipe/pvc001.jpg" alt="ท่อ PVC" />
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-secondary-900 group-hover:text-primary-600 transition-colors">ท่อ PVC</h3>
<p class="text-secondary-600 text-base mt-2">ท่อและข้อต่อพีวีซี</p>
</div>
</a>
<a href="/วาล์ว-valve" class="product-card group">
<div class="product-card-image">
<img src="/images/products/valve/valve001.jpg" alt="วาล์ว" />
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-secondary-900 group-hover:text-primary-600 transition-colors">วาล์ว</h3>
<p class="text-secondary-600 text-base mt-2">วาล์วน้ำทุกประเภท</p>
</div>
</a>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
{categories.map(cat => (
<a href={cat.slug} class="product-card group">
<div class="product-card-image">
<img src={cat.image} alt={cat.name} onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-secondary-900 group-hover:text-green-600 transition-colors">{cat.name}</h3>
</div>
</a>
))}
</div>
</div>
</section>
<!-- Why Choose Us -->
<section class="section gradient-bg">
<section class="section bg-gradient-to-br from-green-50 via-white to-accent-50">
<div class="container-custom">
<div class="text-center mb-16">
<h2 class="section-title">ทำไมต้องเลือกเรา</h2>
@@ -103,8 +93,8 @@ import Footer from '@/components/common/Footer.astro';
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="card p-8 text-center animate-on-scroll">
<div class="w-16 h-16 bg-primary-100 rounded-2xl flex items-center justify-center mx-auto mb-6">
<svg class="w-8 h-8 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<div class="w-16 h-16 bg-green-100 rounded-2xl flex items-center justify-center mx-auto mb-6">
<svg class="w-8 h-8 text-green-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
@@ -112,8 +102,8 @@ import Footer from '@/components/common/Footer.astro';
<p class="text-secondary-600 text-base">สินค้าคุณภาพมาตรฐาน มั่นใจได้ในความทนทาน</p>
</div>
<div class="card p-8 text-center animate-on-scroll">
<div class="w-16 h-16 bg-primary-100 rounded-2xl flex items-center justify-center mx-auto mb-6">
<svg class="w-8 h-8 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<div class="w-16 h-16 bg-green-100 rounded-2xl flex items-center justify-center mx-auto mb-6">
<svg class="w-8 h-8 text-green-600" 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>
@@ -121,13 +111,13 @@ import Footer from '@/components/common/Footer.astro';
<p class="text-secondary-600 text-base">ราคาแข่งขันได้ คุ้มค่าต่อการลงทุน</p>
</div>
<div class="card p-8 text-center animate-on-scroll">
<div class="w-16 h-16 bg-primary-100 rounded-2xl flex items-center justify-center mx-auto mb-6">
<svg class="w-8 h-8 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<div class="w-16 h-16 bg-green-100 rounded-2xl flex items-center justify-center mx-auto mb-6">
<svg class="w-8 h-8 text-green-600" 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-2xl font-bold text-secondary-900 mb-4">จัดส่งรวดเร็ว</h3>
<p class="text-secondary-600 text-base">จัดส่งทันใจ ส่งฟรี กทม. และปริมณฑล</p>
<p class="text-secondary-600 text-base">จัดส่งทันใจ ส่งฟรี กทม. ปริมณฑล</p>
</div>
</div>
</div>
@@ -137,7 +127,6 @@ import Footer from '@/components/common/Footer.astro';
</BaseLayout>
<script>
// Intersection Observer for scroll animations
const observer = new IntersectionObserver(
entries => {
entries.forEach(entry => {

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ข้อต่อท่อ (Pipe Coupling)" description="ข้อต่อท่อ ข้อต่อซ่อมท่อแตก ซ่อมท่อร้าวและซ่อมท่อรั่วซึม นวัตกรรมที่ทันสมัยที่สุดการต่อท่อ-ซ่อมท่อ สะดวกและง่ายที่สุด เป็นระบบการต่อท่อที่จะช่วยให้คุณประหยัดเงิน">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/BG-SMC02.png" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/BG-SMC02.png" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Certificates-smc.png" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SMC-Page-02.jpg" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SMC-Page-03.jpg" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SMC-Page-04.jpg" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SMC-Page-05.jpg" alt="ข้อต่อท่อ (Pipe Coupling)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ข้อต่อท่อ (Pipe Coupling) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection TECHNICAL REVOLUTION OF PIPE COUPLING ข้อต่อท่อ ข้อต่อซ่อมท่อแตก ซ่อมท่อร้าว และซ่อมท่อรั่วซึม นวัตกรรมที่ทันสมัยที่สุดการต่อท่อ-ซ่อมท่อ สะดวกและง่ายที่สุด เป็นระบบการต่อท่อ ที่จ</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ข้อต่อท่อ (Pipe Coupling) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="Realflex Flexible hose fitting" description="Realflex Flexible hose fitting. For ease of installation Realflex® hose assemblies are supplied complete with a custom designed light weight galvanized bracketi">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/REALFLEX_001.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/REALFLEX_001.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/REALFLEX_003.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/REALFLEX_002.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/REALFLEX_004.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/REALFLEX_005.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/REALFLEX_030.png" alt="Realflex Flexible hose fitting" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">Realflex Flexible hose fitting - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection The Realflex® stainless steel hose fitting, developed by Realflex Pipetec Co Ltd, provides a unique solution for the fire-fightin</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">Realflex Flexible hose fitting - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง" description="ปั๊มพ์น้ำ คุณภาพสูง ก่อนเลือกปั๊มพ์ต้องเข้าใจระบบ บริษัทจะช่วยให้ท่านประหยัดพลังงานช่วยโลกได้อีกแรง ปั๊มพ์ที่ท่านต้องการเป็นปั๊มพ์ประเภทใด บริษัท ช่วยคุณได้">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/Banner-pump2.jpg" alt="ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/Banner-pump2.jpg" alt="ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ปั๊มพ์น้ำคุณภาพสูง ก่อนเลือกปั๊มพ์ต้องเข้าใจระบบ บริษัท จะช่วยให้ท่านประหยัดพลังงานช่วยโลกได้อีกแรง ปั๊มพ์ที่ท่านต้องการเป็นปั๊มพ์ประเภทใด บริษัท ช่วยคุณได้ โทร : 081-3048482 Li</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ระบบกรองน้ำดี (Water Treatment)" description="ระบบผลิตน้ำประปาและระบบผลิตน้ำบริสุทธิ์ ระบบผลิตน้ำประปา ระบบผลิตน้ำ DI Ultrafiltration system Reverse osmosis system">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ระบบกรองน้ำดี (Water Treatment)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/original-1411656013669.png" alt="ระบบกรองน้ำดี (Water Treatment)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/original-1411656013669.png" alt="ระบบกรองน้ำดี (Water Treatment)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ระบบกรองน้ำดี (Water Treatment) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ระบบผลิตน้ำประปาและระบบผลิตน้ำบริสุทธิ์ ระบบผลิตน้ำประปา ระบบผลิตน้ำ DI Ultrafiltration system Reverse osmosis system ระบบนำน้ำทิ้งกลับมาใช้ใหม่ ระบบนำน้ำทิ้งกล</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ระบบกรองน้ำดี (Water Treatment) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อ PPR | Thai PPR" description="ท่อ Thai PPR ส่งฟรี กรุงเทพมหานคร ปริมณฑล สามารถสอบถามไ">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/foot-ppr1.jpg" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/foot-ppr1.jpg" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/TPPR55.jpg" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/pic1604031.jpg" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Brochure-Thai-PP-R_Edit-4-6-57_Page_03.jpg" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Image1.jpg" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Image2.png" alt="ท่อ PPR | Thai PPR" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อ PPR | Thai PPR - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ท่อ PPR Thai-PPR คือทางเลือกที่ดีที่สุดสำหรับงานระบบน้ำคุณภาพสูง ทั้งน้ำร้อนและน้ำเย็นในอาคารสมัยใหม่ ผลิตจากวัสดุ Polypropylene Random Copolymer (PPR) เกรดพรีเมียม ทำให้มั่นใจได้ถึงความสะอาด ปลอดภัย และมี</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อ PPR | Thai PPR - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ" description="ท่อ uPVC มีลักษณะภายนอกคล้ายกับพลาสติก uPVC สีขาวแต่มีการพัฒนาอย่างต่อเนื่องมามากกว่า 40 ปีเพื่อให้ทนทานต่อทุกสภาวะอากาศทั่วโลก">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/download-1.jpg" alt="ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/download-1.jpg" alt="ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ท่อ uPVC มีลักษณะภายนอกคล้ายกับพลาสติก uPVC สีขาวแต่มีการพัฒนาอย่างต่อเนื่องมามากกว่า 40 ปีเพื่อให้ทนทานต่อทุกสภาวะอากาศทั่วโลก และมีการส่วนผสมของสาร UV Stabilizer เพื่อต้านแสง UV และ</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อเอชดีพีอี (HDPE Pipe)" description="ท่อเอชดีพีอี (HDPE Pipe) จำหน่ายท่อ PE ,ท่อ PE คุณภาพสูง ทนทานต่อการกัดกร่อนของสารเคมีได้หลายชนิด ไม่เป็นสนิม น้ำหนักเบา ง่ายต่อการขนส่ง อายุการใช้งานยาวนาน">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/ท่อhdpe.jpg" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/ท่อhdpe.jpg" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/HDPE2.jpg" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/HDPE4.jpg" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/HDPE.jpg" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/HDPE-Welding2.jpg" alt="ท่อเอชดีพีอี (HDPE Pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อเอชดีพีอี (HDPE Pipe) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ขายส่ง จำหน่าย ท่อ HDPE , LDPE อุปกรณ์ข้อต่อ FITTING ทุกชนิด ท่อน้ำ ท่อประปา ท่อเกษตร ท่อไฟฟ้า ท่อร้อยสายไฟ ตั้งแต่ ขนาดเล็กที่สุด ถึง ขนาดใหญ่ที่สุด จากโรงงานผู้ผลิตชั้นนำใน</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อเอชดีพีอี (HDPE Pipe) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" description="ท่อพีพีอาร์ ตราช้าง เหมาะแก่การทำท่อน้ำดื่ม ท่อน้ำร้อน ท่อน้ำเย็น ระบบประปา เพราะการติดตั้งท่อจะใช้วิธีให้ความร้อนทำให้ท่อประสานเป็นเนื้อเดียวกันจึงไม่รั่วซึม">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/Screenshot-2023-03-08-at-10.39.16-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/Screenshot-2023-03-08-at-10.39.16-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2023-03-08-at-10.42.41-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2023-03-08-at-10.44.22-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2023-03-08-at-10.44.28-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2023-03-08-at-10.44.36-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2023-03-08-at-10.44.44-AM.png" alt="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ท่อ PPR ตราช้าง ผลิตจากเม็ดพลาสติก PP-R 80 ( Polypropylene Random Copolymer 80 ) วัตถุดิบคุณภาพสูงมาตรฐานยุโรปจาก lyondellbasell สามารถทนแรงดันได้สูงสุด 20 บาร์ ทนต่ออุณหภูมิได</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,19 +7,100 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" description="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ ผลิตจากโรงงาน Poloplast ผ่านการรับรองคุณภาพจาก SKZ ประเทศเยอรมัน ตามมาตตรฐาน EN 1451-1 ได้รับการดูแลตรวจสอบคุณภาพ">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl md:text-5xl font-bold text-secondary-900 mb-8">ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT</h1>
<div class="card p-8 md:p-12 bg-white">
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ท่อระบายน้ำ | ท่อระบายน้ำโสโครก | ท่อระบายน้ำฝน | ท่อระบายน้ำในครัว | ท่อระบายน้ำซักล้าง | ท่อระบายน้ำในห้องทดลอง เงียบ เก็บเสียงได้ดี (ดังเพียง 22</p>
<div class="grid lg:grid-cols-2 gap-12 items-start">
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/products-misc/XYLENT_001.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/XYLENT_001.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/XYLENT_002.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/XYLENT_003.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/XYLENT_004.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/XYLENT_005.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/XYLENT_006.png" alt="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
<div>
<h1 class="text-4xl md:text-5xl font-bold text-secondary-900 mb-6">ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT</h1>
<p class="text-xl text-secondary-600 mb-8 leading-relaxed">
ท่อระบายน้ำ 3 ชั้น ไซเลนท์ ผลิตจากโรงงาน Poloplast ผ่านการรับรองคุณภาพจาก SKZ ประเทศเยอรมัน ตามมาตตรฐาน EN 1451-1 ได้รับการดูแลตรวจสอบคุณภาพ
</p>
<div class="flex flex-wrap gap-4 mt-8">
<a href="https://line.me/ti/p/~dealplustech" target="_blank" class="inline-flex items-center space-x-2 bg-[#06C755] hover:bg-[#05b34d] text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
</div>
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="section gradient-bg">
<div class="container-custom text-center">
<h2 class="text-3xl md:text-4xl font-bold text-secondary-900 mb-6">สนใจสินค้าของเรา?</h2>
<p class="text-xl text-secondary-600 mb-8 max-w-2xl mx-auto">
ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ
</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="tel:0905551415" class="btn-primary text-lg px-8 py-4">โทรเลย: 090-555-1415</a>
<a href="https://line.me/ti/p/~dealplustech" target="_blank" class="inline-flex items-center space-x-2 bg-[#06C755] hover:bg-[#05b34d] text-white px-8 py-4 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95 text-lg">
<span>แอด Line</span>
</a>
</div>
</div>
</section>
</main>
<Footer slot="footer" />

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อและข้อต่อพีวีซี (PVC pipe)" description="ท่อและข้อต่อพีวีซี เป็นวัสดุประเภทท่อประปาที่นิยมใช้งานในประเทศไทยมากที่สุดในปัจจุบัน หาซื้อได้ง่ายตามร้านค้าวัสดุก่อสร้างทั่วไป มีหลายคุณภาพและราคาให้เลือกใช้">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ท่อและข้อต่อพีวีซี (PVC pipe)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/ท่อPVCมาตรฐานสูง-01.jpg" alt="ท่อและข้อต่อพีวีซี (PVC pipe)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/ท่อPVCมาตรฐานสูง-01.jpg" alt="ท่อและข้อต่อพีวีซี (PVC pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/ติดตั้งท่อPVCมาตรฐานสูง-01.jpg" alt="ท่อและข้อต่อพีวีซี (PVC pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/ติดตั้งท่อPVCแรงดัน-01.jpg" alt="ท่อและข้อต่อพีวีซี (PVC pipe)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อและข้อต่อพีวีซี (PVC pipe) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ยี่ห้อที่มีจำหน่าย : ท่อตราช้าง/ท่อน้ำไทย/ท่อตราเสือ/โรงงานทั่วไป ท่อ PVC ราคาส่ง มาตรฐานสูง ราคาโรงงาน ท่อ PVC ในปัจจุบันทำงานอย่างไร ท่อ PVC</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อและข้อต่อพีวีซี (PVC pipe) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,19 +7,100 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" description="ท่อไซเลอร์ ท่อเหล็กเหล็กบุพีอี เป็นท่อเหล็กกล้า Class M ชุบสังกะสี ภายนอกเคลือบด้วยผงโพลีเอทิลีน (PEpowder coat) ป้องกันสนิมอีกชั้นหนึ่ง อายุการใช้งานที่ยาวนาน">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl md:text-5xl font-bold text-secondary-900 mb-8">ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี</h1>
<div class="card p-8 md:p-12 bg-white">
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ท่อไซเลอร์ (ท่อ SYLER) เป็นท่อเหล็กกล้าClass M ชุบสังกะสี ภายนอกจะถูกเคลือบด้วยผงโพลีเอทิลีน (PEpowder coat) ป้องกันสนิมจากภายนอกอีกชั้นหนึ่ง จึงทำให้มั่นใจได้ว่าท่อไซเลอร์จะม</p>
<div class="grid lg:grid-cols-2 gap-12 items-start">
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/products-misc/SYLER01.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/SYLER01.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SYLER-b01.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SYLER-b02.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/SYLER-b03.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/syler001.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/syler002.jpg" alt="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
<div>
<h1 class="text-4xl md:text-5xl font-bold text-secondary-900 mb-6">ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี</h1>
<p class="text-xl text-secondary-600 mb-8 leading-relaxed">
ท่อไซเลอร์ ท่อเหล็กเหล็กบุพีอี เป็นท่อเหล็กกล้า Class M ชุบสังกะสี ภายนอกเคลือบด้วยผงโพลีเอทิลีน (PEpowder coat) ป้องกันสนิมอีกชั้นหนึ่ง อายุการใช้งานที่ยาวนาน
</p>
<div class="flex flex-wrap gap-4 mt-8">
<a href="https://line.me/ti/p/~dealplustech" target="_blank" class="inline-flex items-center space-x-2 bg-[#06C755] hover:bg-[#05b34d] text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
</div>
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="section gradient-bg">
<div class="container-custom text-center">
<h2 class="text-3xl md:text-4xl font-bold text-secondary-900 mb-6">สนใจสินค้าของเรา?</h2>
<p class="text-xl text-secondary-600 mb-8 max-w-2xl mx-auto">
ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ
</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="tel:0905551415" class="btn-primary text-lg px-8 py-4">โทรเลย: 090-555-1415</a>
<a href="https://line.me/ti/p/~dealplustech" target="_blank" class="inline-flex items-center space-x-2 bg-[#06C755] hover:bg-[#05b34d] text-white px-8 py-4 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95 text-lg">
<span>แอด Line</span>
</a>
</div>
</div>
</section>
</main>
<Footer slot="footer" />

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="พุกเหล็ก | SLEEVE ANCHOR BOLT" description="พุกเหล็ก | SLEEVE ANCHOR BOLT ส่งฟรี กรุงเทพมหานคร ปริม">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="พุกเหล็ก | SLEEVE ANCHOR BOLT" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026823864.jpg" alt="พุกเหล็ก | SLEEVE ANCHOR BOLT" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026823864.jpg" alt="พุกเหล็ก | SLEEVE ANCHOR BOLT" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">พุกเหล็ก | SLEEVE ANCHOR BOLT - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่อสร้างและอุปกรณ์ที่ใช้สำหรับงานระบบอาทิ สปริทริงแฮงเกอร์ สตัดเกลียวตลอด เคว</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">พุกเหล็ก | SLEEVE ANCHOR BOLT - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ยูโบลท์ | U-Bolt" description="ยูโบลท์ (เหล็ก) | U-BOLT ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026669627.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026669627.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026674678.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026652029.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026659512.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026721778.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026726419.jpg" alt="ยูโบลท์ | U-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ยูโบลท์ | U-Bolt - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่อสร้างและอุปกรณ์ที่ใช้สำหรับงานระบบอาทิ สปริทริงแฮงเกอร์ สตัดเกลียวตลอด เควิสแฮงเกอร์ ยูโบลท์ พุกเหล็ก พุก</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ยูโบลท์ | U-Bolt - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ยูโบลท์ + ประกับ | U-BOLT CLAMP" description="ยูโบลท์ + ประกับ | U-BOLT CLAMP ส่งฟรี กรุงเทพมหานคร ปร">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ยูโบลท์ + ประกับ | U-BOLT CLAMP" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026787358.jpg" alt="ยูโบลท์ + ประกับ | U-BOLT CLAMP" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026787358.jpg" alt="ยูโบลท์ + ประกับ | U-BOLT CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ยูโบลท์ + ประกับ | U-BOLT CLAMP - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่อสร้างและอุปกรณ์ที่ใช้สำหรับงานระบบอาทิ สปริทริงแฮงเกอร์ สตัดเกลียวตล</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ยูโบลท์ + ประกับ | U-BOLT CLAMP - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" description="ระบบรั้วไวน์แมน ผลิตจากลวดกึ่งสปริง คิดค้นและออกแบบรอยหยักบนเส้นลวดในแนวนอน สามารถสปริงตัวได้ รั้วไม่ยืดหรือหย่อยตัวง่าย มีความแข็งแรง ยืดหยุ่นสูง คืนตัวได้ดี">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/ระบบรั้วไวน์แมน-Vineman-e1613286324569.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/ระบบรั้วไวน์แมน-Vineman-e1613286324569.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/ระบบรั้วไวน์แมน.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/ลวดหนาม.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/ตาข่ายถักปม.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/ฟิคซ์ล็อค.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/เทคนิคน่ารู้-ก่อนเลือกใช้-ระบบรั้วตาข่าย.jpg" alt="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ลวดหนาม/เสารั้ว/เสารับแรง ลวดหนาม ตาข่ายถักปม ฟิคซ์ล็อค 6 เทคนิคน่ารู้ ก่อนเลือกใช้ ระบบรั้วตาข่าย 01 ต้อง ทนทาน ด้วยลวดแรงดึงสูง เหนียว ทนต่อแรงกระแทก ไม่ขาดง่า</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="วาล์ว Valve" description="วาล์ว จำหน่ายวาล์วและ process valve ชนิดต่างๆ ทั้งแบบออโต้และมือหมุน สินค้าวาล์ว Valve มีให้เลือกหลายแบบหลายประเภท ตอบทุกโจทย์การใช้งาน">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="วาล์ว Valve" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/In01.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/In01.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/In03.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/In17.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/In05.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/In15.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/In10.jpg" alt="วาล์ว Valve" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">วาล์ว Valve - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection จำหน่ายวาล์วและ process valve ชนิดต่างๆ ทั้งแบบออโต้และมือหมุน สินค้าวาล์ว Valve มีให้เลือกหลายแบบหลายประเภท ตอบทุกโจทย์การใช้งาน รายการสินค้าที่ขาย Gate Valve & Globe Valve Ball Valve Butterfly Valve Balancing Valve</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">วาล์ว Valve - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" description="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707024379090.jpg" alt="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707024379090.jpg" alt="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707024384603.jpg" alt="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026683820.jpg" alt="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026691781.jpg" alt="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="เครื่องเชื่อมท่อ PE, HDPE, PP-R" description="จำหน่ายเครื่องเชื่อมท่อ PB, HDPE, PP-R คุณภาพสูง ราคาถูก จากโรงงานผู้ผลิตโดยตรง เราเป็นตัวแทนจำหน่ายจากโรงงานโดยตรง จึงทำให้ราคาถูก">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="เครื่องเชื่อมท่อ PE, HDPE, PP-R" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/Banner-HDPE-wel.jpg" alt="เครื่องเชื่อมท่อ PE, HDPE, PP-R" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/Banner-HDPE-wel.jpg" alt="เครื่องเชื่อมท่อ PE, HDPE, PP-R" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/hdpe001.jpg" alt="เครื่องเชื่อมท่อ PE, HDPE, PP-R" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/hdpe002.jpg" alt="เครื่องเชื่อมท่อ PE, HDPE, PP-R" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">เครื่องเชื่อมท่อ PE, HDPE, PP-R - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection จำหน่ายเครื่องเชื่อมท่อPB, HDPE, PP-R คุณภาพสูง ราคาถูก จากโรงงานผู้ผลิตโดยตรง เราเป็นตัวแทนจำหน่ายจากโรงงานโดยตรง จึงทำให้ราคาถูก เคร</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">เครื่องเชื่อมท่อ PE, HDPE, PP-R - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="เครื่องเชื่อมท่อ | Pipe Coupling Machine" description="เครื่องเชื่อมท่อ | Pipe Coupling Machine ส่งฟรี กรุงเทพ">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="เครื่องเชื่อมท่อ | Pipe Coupling Machine" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/groove-coupling_000C.jpg" alt="เครื่องเชื่อมท่อ | Pipe Coupling Machine" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/groove-coupling_000C.jpg" alt="เครื่องเชื่อมท่อ | Pipe Coupling Machine" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/pipec-coupling_000C.jpg" alt="เครื่องเชื่อมท่อ | Pipe Coupling Machine" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/hdpe-welding_000C-1.jpg" alt="เครื่องเชื่อมท่อ | Pipe Coupling Machine" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/dukelarrsen_000C.jpg" alt="เครื่องเชื่อมท่อ | Pipe Coupling Machine" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">เครื่องเชื่อมท่อ | Pipe Coupling Machine - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ปรึกษา Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) เครื่องเชื่อมท่อ HDPE | HDPE Welding Machine DUKELARRSEN Search for: Search Button Contact Details บริษัท ดีล พลั</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">เครื่องเชื่อมท่อ | Pipe Coupling Machine - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) เครื่องเชื่อมท่อ HDPE | HDPE Welding Machine DUKELARRSEN Search for: Search Button Contact Details บริษัท ดีล พลั</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="เครื่องเชื่อมท่อพีพีอาร์" description="เครื่องเชื่อมท่อพีพีอาร์ ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/Banner-ppr2-1.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/Banner-ppr2-1.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/D20-32small.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/D20-32large.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/D20-63.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/D75-110.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/D75-110-1.jpg" alt="เครื่องเชื่อมท่อพีพีอาร์" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">เครื่องเชื่อมท่อพีพีอาร์ - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ท่อน้ำไทยพีพีอาร์ มาตรฐานเยอรมัน DVGW มั่นใจคุณภาพ และบริการ เลือกไทยพีพีอาร์ สินค้าและอุปกรณ์เครื่องเชื่อมครบครัน.</p><p class="text-base text-secondary-700 leading-relaxed mb-4">พีพีอาร์ ( PPR 80) มี ท่อ -ข้อต่อ สำหรับน้ำร้อน้ำเย็น ทุกขนาด ,</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">เครื่องเชื่อมท่อพีพีอาร์ - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" description="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ส่งฟรี กรุงเทพมหานคร">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026838260.jpg" alt="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026838260.jpg" alt="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2024-02-04-171738.jpg" alt="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026843889.jpg" alt="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่อสร้างและอุปกรณ์ที่ใช้สำหรับงานระบบอาทิ สปริทริงแฮงเกอร์ สตั</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" description="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/BANNER_0.png" alt="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/BANNER_0.png" alt="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Thermobreak®-SolarBlock_0.png" alt="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Thermobreak®-LS_0.png" alt="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Thermobreak®-Raised-Floor-Insulation_0.png" alt="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection ตัวแทนจำ</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="แคล้มฟันจระเข้ | BEAM CLAMP" description="แคล้มฟันจระเข้ (แคล้มฟันเล็กType1/แคล้มฟันใหญ่Type1W) (">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="แคล้มฟันจระเข้ | BEAM CLAMP" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026860264.jpg" alt="แคล้มฟันจระเข้ | BEAM CLAMP" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026860264.jpg" alt="แคล้มฟันจระเข้ | BEAM CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026866420.jpg" alt="แคล้มฟันจระเข้ | BEAM CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026874041.jpg" alt="แคล้มฟันจระเข้ | BEAM CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026879752.jpg" alt="แคล้มฟันจระเข้ | BEAM CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">แคล้มฟันจระเข้ | BEAM CLAMP - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">แคล้มฟันจระเข้ | BEAM CLAMP - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" description="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER ส่งฟรี กรุงเทพมหาน">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026736927.jpg" alt="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026736927.jpg" alt="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/messageImage_1707026741725.jpg" alt="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่อสร้างและอุปกรณ์ที่ใช้สำหรับงานระบบอาทิ สปริทริงแฮงเกอ</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="แคล้มเลเวล | LEVEL CLAMP" description="แคล้มเลเวล | LEVEL CLAMP ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส">
<Header slot="header" />
<main class="bg-gradient-to-br from-primary-50 via-white to-accent-50 min-h-screen">
<main class="bg-gradient-to-br from-green-50 via-white to-accent-50 min-h-screen">
<!-- Hero Section -->
<section class="section">
<div class="container-custom">
@@ -15,9 +15,13 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images -->
<div class="space-y-6">
<div class="card p-8 bg-white">
<img src="/images/logo/13523630950840.png" alt="แคล้มเลเวล | LEVEL CLAMP" class="w-full h-auto rounded-xl" />
<img src="/images/products-misc/messageImage_1707026852806.jpg" alt="แคล้มเลเวล | LEVEL CLAMP" class="w-full h-auto rounded-xl" onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-8">
<img src="/images/products-misc/messageImage_1707026852806.jpg" alt="แคล้มเลเวล | LEVEL CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" /><img src="/images/products-misc/Screenshot-2024-02-04-183446.jpg" alt="แคล้มเลเวล | LEVEL CLAMP" class="w-full h-auto rounded-xl shadow-md hover:shadow-lg transition-shadow cursor-pointer" onerror="this.style.display='none'" />
</div>
</div>
<!-- Product Info -->
@@ -33,7 +37,7 @@ import Footer from '@/components/common/Footer.astro';
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M19.368 9.131c.896.541 1.532 1.394 1.532 2.516 0 2.059-1.944 3.274-4.268 3.274-.284 0-.554-.027-.824-.054l-1.56.793c-.868.441-1.179.274-1.179-.58v-.71c-2.892-.985-4.89-3.316-4.89-6.29 0-.653.068-1.279.191-1.891H4.796c-2.297 0-4.132 1.757-4.132 4.081 0 2.708 2.114 4.849 5.202 5.615l.027 1.333c0 .626.488.871.976.625l2.351-1.203c.642.177 1.311.273 2.007.273 3.351 0 5.966-1.73 5.966-4.356 0-.428-.068-.83-.19-1.218l2.365-2.204z"/></svg>
<span>แชท Line</span>
</a>
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<a href="tel:0905551415" class="inline-flex items-center space-x-2 bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-xl font-medium transition-all hover:shadow-lg active:scale-95">
<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="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<span>090-555-1415</span>
</a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features -->
<div class="mt-12 space-y-4">
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div>
<div class="flex items-start space-x-3">
<svg class="w-6 h-6 text-primary-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg class="w-6 h-6 text-green-600 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div>
</section>
<!-- Product Details -->
<!-- Product Details with REAL Content -->
<section class="section bg-white">
<div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none">
<p class="text-base text-secondary-700 leading-relaxed mb-4">แคล้มเลเวล | LEVEL CLAMP - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ Telephone : 090-555-1415 E-mail : dealplustech@gmail.com Line Id : Jppselection บริษัท Dealplustech เป็นตัวแทนจำหน่าย อุปกรณ์ แฮงเกอร์ราคาไม่แพง รวมถึงอุปกรณ์สนับสนุนงานก่อสร้างและอุปกรณ์ที่ใช้สำหรับงานระบบอาทิ สปริทริงแฮงเกอร์ สตัดเกลียวตลอด เควิสแฮงเกอร์ ยูโบ</p>
<p class="text-base text-secondary-700 leading-relaxed mb-4">แคล้มเลเวล | LEVEL CLAMP - Deal Plus Tech บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก Menu ≡ Home เกี่ยวกับเรา สินค้า ท่อ | Pipe ท่อ PPR Thai PPR ท่อ PPR ตราช้าง (SCG) PP-R / PP-RCT POLOPLAST เครื่องเชื่อมท่อพีพีอาร์ ท่อ HDPE ราคาโรงงาน ท่อ UPVC | UPVC pipe ท่อไซเลอร์ | Syler ท่อ pvc และข้อต่อท่อพีวีซี ราคาส่ง | PVC pipe ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT เชื่อมท่อ กรู๊ฟท่อ HDPE Welding Machine กรู๊ฟท่อ (Groove Coupling) ข้อต่อท่อ (Pipe Coupling) DUKELARRSEN Groove Coupling and Fitting เม็กกรู๊ฟ คับปลิ้ง | MECH Grooved Coupling Fitting แฮงเกอร์, แคล้ม, โบลท์, แหวน, น็อต, สกรู, พุก, สตัดเกลียว | Hanger, Clamp, Bolt, Flat washer, Nut, Screw, Anchor สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) แคล้มฟันจระเข้ | BEAM CLAMP แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER แคล้มเลเวล | LEVEL CLAMP เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ยูโบลท์ | U-Bolt ยูโบลท์ + ประกับ | U-BOLT CLAMP ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW พุกต่างๆ พุกเหล็ก | SLEEVE ANCHOR BOLT สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ระบบรั้ว ระบบรั้วไวน์แมน | Vineman รั้วเทวดา วาล์ว | Valve ปั๊มพ์น้ำ (Water Pump) ระบบกรองน้ำดี (Water Treatment) กริลแอร์พลาสติก | Grilles plastic ระบบวาล์วเติมอากาศ DURGO AVVs Realflex | Stainless Steel Flexible Hose Fitting ฉนวนหุ้มท่อ | Pipe Insulation ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak) หัวจ่ายแอร์ | BALL JET บริการ ผลงาน ร่วมงานกับเรา ถามตอบ ติดต่อเรา</p>
</div>
</div>
</section>