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

@@ -0,0 +1 @@
export default new Map();

View File

@@ -0,0 +1 @@
export default new Map();

219
.astro/content.d.ts vendored Normal file
View File

@@ -0,0 +1,219 @@
declare module 'astro:content' {
export interface RenderResult {
Content: import('astro/runtime/server/index.js').AstroComponentFactory;
headings: import('astro').MarkdownHeading[];
remarkPluginFrontmatter: Record<string, any>;
}
interface Render {
'.md': Promise<RenderResult>;
}
export interface RenderedContent {
html: string;
metadata?: {
imagePaths: Array<string>;
[key: string]: unknown;
};
}
}
declare module 'astro:content' {
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
export type CollectionKey = keyof AnyEntryMap;
export type CollectionEntry<C extends CollectionKey> = Flatten<AnyEntryMap[C]>;
export type ContentCollectionKey = keyof ContentEntryMap;
export type DataCollectionKey = keyof DataEntryMap;
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
type ValidContentEntrySlug<C extends keyof ContentEntryMap> = AllValuesOf<
ContentEntryMap[C]
>['slug'];
export type ReferenceDataEntry<
C extends CollectionKey,
E extends keyof DataEntryMap[C] = string,
> = {
collection: C;
id: E;
};
export type ReferenceContentEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}) = string,
> = {
collection: C;
slug: E;
};
export type ReferenceLiveEntry<C extends keyof LiveContentConfig['collections']> = {
collection: C;
id: string;
};
/** @deprecated Use `getEntry` instead. */
export function getEntryBySlug<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
collection: C,
// Note that this has to accept a regular string too, for SSR
entrySlug: E,
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
/** @deprecated Use `getEntry` instead. */
export function getDataEntryById<C extends keyof DataEntryMap, E extends keyof DataEntryMap[C]>(
collection: C,
entryId: E,
): Promise<CollectionEntry<C>>;
export function getCollection<C extends keyof AnyEntryMap, E extends CollectionEntry<C>>(
collection: C,
filter?: (entry: CollectionEntry<C>) => entry is E,
): Promise<E[]>;
export function getCollection<C extends keyof AnyEntryMap>(
collection: C,
filter?: (entry: CollectionEntry<C>) => unknown,
): Promise<CollectionEntry<C>[]>;
export function getLiveCollection<C extends keyof LiveContentConfig['collections']>(
collection: C,
filter?: LiveLoaderCollectionFilterType<C>,
): Promise<
import('astro').LiveDataCollectionResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>
>;
export function getEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
entry: ReferenceContentEntry<C, E>,
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
entry: ReferenceDataEntry<C, E>,
): E extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
collection: C,
slug: E,
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
collection: C,
id: E,
): E extends keyof DataEntryMap[C]
? string extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]> | undefined
: Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getLiveEntry<C extends keyof LiveContentConfig['collections']>(
collection: C,
filter: string | LiveLoaderEntryFilterType<C>,
): Promise<import('astro').LiveDataEntryResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>>;
/** Resolve an array of entry references from the same collection */
export function getEntries<C extends keyof ContentEntryMap>(
entries: ReferenceContentEntry<C, ValidContentEntrySlug<C>>[],
): Promise<CollectionEntry<C>[]>;
export function getEntries<C extends keyof DataEntryMap>(
entries: ReferenceDataEntry<C, keyof DataEntryMap[C]>[],
): Promise<CollectionEntry<C>[]>;
export function render<C extends keyof AnyEntryMap>(
entry: AnyEntryMap[C][string],
): Promise<RenderResult>;
export function reference<C extends keyof AnyEntryMap>(
collection: C,
): import('astro/zod').ZodEffects<
import('astro/zod').ZodString,
C extends keyof ContentEntryMap
? ReferenceContentEntry<C, ValidContentEntrySlug<C>>
: ReferenceDataEntry<C, keyof DataEntryMap[C]>
>;
// Allow generic `string` to avoid excessive type errors in the config
// if `dev` is not running to update as you edit.
// Invalid collection names will be caught at build time.
export function reference<C extends string>(
collection: C,
): import('astro/zod').ZodEffects<import('astro/zod').ZodString, never>;
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
type InferEntrySchema<C extends keyof AnyEntryMap> = import('astro/zod').infer<
ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']>
>;
type ContentEntryMap = {
};
type DataEntryMap = {
"blog": Record<string, {
id: string;
render(): Render[".md"];
slug: string;
body: string;
collection: "blog";
data: any;
rendered?: RenderedContent;
filePath?: string;
}>;
"products": Record<string, {
id: string;
render(): Render[".md"];
slug: string;
body: string;
collection: "products";
data: any;
rendered?: RenderedContent;
filePath?: string;
}>;
};
type AnyEntryMap = ContentEntryMap & DataEntryMap;
type ExtractLoaderTypes<T> = T extends import('astro/loaders').LiveLoader<
infer TData,
infer TEntryFilter,
infer TCollectionFilter,
infer TError
>
? { data: TData; entryFilter: TEntryFilter; collectionFilter: TCollectionFilter; error: TError }
: { data: never; entryFilter: never; collectionFilter: never; error: never };
type ExtractDataType<T> = ExtractLoaderTypes<T>['data'];
type ExtractEntryFilterType<T> = ExtractLoaderTypes<T>['entryFilter'];
type ExtractCollectionFilterType<T> = ExtractLoaderTypes<T>['collectionFilter'];
type ExtractErrorType<T> = ExtractLoaderTypes<T>['error'];
type LiveLoaderDataType<C extends keyof LiveContentConfig['collections']> =
LiveContentConfig['collections'][C]['schema'] extends undefined
? ExtractDataType<LiveContentConfig['collections'][C]['loader']>
: import('astro/zod').infer<
Exclude<LiveContentConfig['collections'][C]['schema'], undefined>
>;
type LiveLoaderEntryFilterType<C extends keyof LiveContentConfig['collections']> =
ExtractEntryFilterType<LiveContentConfig['collections'][C]['loader']>;
type LiveLoaderCollectionFilterType<C extends keyof LiveContentConfig['collections']> =
ExtractCollectionFilterType<LiveContentConfig['collections'][C]['loader']>;
type LiveLoaderErrorType<C extends keyof LiveContentConfig['collections']> = ExtractErrorType<
LiveContentConfig['collections'][C]['loader']
>;
export type ContentConfig = typeof import("../src/content.config.js");
export type LiveContentConfig = never;
}

2
.astro/types.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
/// <reference types="astro/client" />
/// <reference path="content.d.ts" />

58
PUSH_INSTRUCTIONS.md Normal file
View File

@@ -0,0 +1,58 @@
# Push Images to Gitea - Manual Instructions
## Status
- 22 commits ready to push
- 495 image files committed
- Authentication required for Gitea
## Method 1: Push All at Once (Recommended)
```bash
cd /Users/kunthawatgreethong/Gitea/dealplustech-new/dealplustech-astro
git push origin main --force
```
Enter your Gitea password when prompted.
## Method 2: Push in Batches
If Method 1 fails, push in smaller batches:
### Batch 1: Corporate + Banners (2 commits)
```bash
git push origin HEAD~22..HEAD~20 --force
```
### Batch 2: Pipe Images (4 commits)
```bash
git push origin HEAD~20..HEAD~16 --force
```
### Batch 3: Valves + Grilles + Mech (3 commits)
```bash
git push origin HEAD~16..HEAD~13 --force
```
### Batch 4: More Categories (5 commits)
```bash
git push origin HEAD~13..HEAD~8 --force
```
### Batch 5: Final Categories (8 commits)
```bash
git push origin HEAD~8..HEAD --force
```
## Troubleshooting
If authentication fails:
1. Make sure you're using correct Gitea credentials
2. Try: `git config --global credential.helper cache`
3. Or use SSH instead of HTTPS (if configured)
## Verify Push
After pushing, check:
https://git.moreminimore.com/kunthawat/dealplustech/commits/branch/main
You should see 22 new commits with image files.

7297
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,17 @@
--- ---
const currentYear = new Date().getFullYear(); 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"> <footer class="footer section">
@@ -8,63 +20,61 @@ const currentYear = new Date().getFullYear();
<!-- Company Info --> <!-- Company Info -->
<div> <div>
<div class="flex items-center space-x-3 mb-6"> <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> <span class="text-xl font-bold">Deal Plus Tech</span>
</div> </div>
<p class="text-secondary-300 text-base mb-6"> <p class="text-secondary-300 text-base mb-6">
ผู้เชี่ยวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก ผู้เชี่ยวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก
</p> </p>
<div class="flex space-x-4"> <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> <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>
<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> <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> </a>
</div> </div>
</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 --> <!-- Quick Links -->
<div> <div>
<h3 class="text-lg font-bold mb-6">ลิงก์ด่วน</h3> <h3 class="text-lg font-bold mb-6">ลิงก์ด่วน</h3>
<ul class="space-y-3"> <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="/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="/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> <li><a href="/contact-us" class="text-secondary-300 hover:text-white transition-colors text-base">ติดต่อเรา</a></li>
</ul> </ul>
</div> </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 --> <!-- Contact -->
<div> <div>
<h3 class="text-lg font-bold mb-6">ติดต่อเรา</h3> <h3 class="text-lg font-bold mb-6">ติดต่อเรา</h3>
<ul class="space-y-4"> <ul class="space-y-4">
<li class="flex items-start space-x-3"> <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" /> <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> </svg>
<span class="text-secondary-300 text-base">090-555-1415</span> <span class="text-secondary-300 text-base">090-555-1415</span>
</li> </li>
<li class="flex items-start space-x-3"> <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" /> <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> </svg>
<span class="text-secondary-300 text-base">info@dealplustech.co.th</span> <span class="text-secondary-300 text-base">info@dealplustech.co.th</span>
</li> </li>
<li class="flex items-start space-x-3"> <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="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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z" />
</svg> </svg>

View File

@@ -1,60 +1,115 @@
--- ---
const categories = [ const categories = [
{ name: 'ท่อ | Pipe', slug: '/pipe' }, {
name: 'ท่อ | Pipe',
slug: '/pipe',
subcategories: [
{ name: 'ท่อ PPR', slug: '/ท่อ-ppr-thai-ppr' }, { name: 'ท่อ PPR', slug: '/ท่อ-ppr-thai-ppr' },
{ name: 'ท่อ PPR ตราช้าง', slug: '/ท่อพีพีอาร์ตราช้าง' },
{ name: 'ท่อ PP-R Poloplast', slug: '/pp-r-pp-rct-poloplast' },
{ name: 'ท่อ HDPE', slug: '/ท่อhdpe' }, { name: 'ท่อ HDPE', slug: '/ท่อhdpe' },
{ name: 'ท่อ PVC', slug: '/ท่อและข้อต่อpvc' },
{ name: 'ท่อ UPVC', slug: '/ท่อ-upvc' }, { 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: 'วาล์ว | Valve', slug: '/วาล์ว-valve' },
{ name: 'ปั๊มน้ำ', slug: '/water-pump' }, { name: 'ปั๊มน้ำ', slug: '/water-pump' },
{ name: 'ระบบกรองน้ำ', slug: '/water-treatment' }, { name: 'อุปกรณ์ดับเพลิง', slug: '/อุปกรณ์ดับเพลิง' },
{ name: 'ระบบรั้ว', slug: '/ระบบรั้ว' }, { name: 'ระบบรั้ว', slug: '/ระบบรั้ว' },
{ name: 'รั้วเทวดา', slug: '/รั้วเทวดา' },
{ name: 'ระบบรั้วไวน์แมน', slug: '/ระบบรั้วไวน์แมน-vineman-2' },
{ name: 'กริลแอร์', slug: '/grilles' }, { name: 'กริลแอร์', slug: '/grilles' },
{ name: 'ฉนวนหุ้มท่อ', slug: '/ฉนวนหุ้มท่อ-pipe-insulation' }, { name: 'ฉนวนหุ้มท่อ', slug: '/ฉนวนหุ้มท่อ-pipe-insulation' },
{ name: 'แฮงเกอร์ แคล้ม โบลท์', slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหวน-น็อต-สกรู-พุก-สตัดเกลียว' }, { name: 'เทอร์โมเบรค', slug: '/เทอร์โมเบรค-thermobreak' },
]; ];
--- ---
<header class="navbar"> <header class="navbar">
<div class="container-custom"> <div class="container-custom">
<div class="flex items-center justify-between h-20"> <div class="flex items-center justify-between h-20">
<!-- Logo --> <!-- Logo (No Text) -->
<a href="/" class="flex items-center space-x-3 group"> <a href="/" class="flex items-center group">
<img src="/images/logo/13523630950840.png" alt="Deal Plus Tech" class="h-12 w-auto transition-transform group-hover:scale-105" /> <img src="/images/logo/dealplustech-logo.png" alt="Deal Plus Tech" class="h-14 w-auto transition-transform group-hover:scale-105" />
<span class="text-2xl font-bold gradient-text hidden md:block">Deal Plus Tech</span>
</a> </a>
<!-- Desktop Navigation --> <!-- Desktop Navigation -->
<nav class="hidden lg:flex items-center space-x-1"> <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="/" 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-primary-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"> <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> <span>สินค้า</span>
<svg class="w-4 h-4 transition-transform group-hover:rotate-180" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg> </svg>
</button> </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="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="py-2"> <div class="grid grid-cols-3 gap-6 p-6">
{categories.map(cat => ( {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"> <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} {cat.name}
</a> </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> </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="/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-primary-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> </nav>
<!-- Contact Button --> <!-- Contact Button -->
<div class="hidden lg:flex items-center space-x-4"> <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"> <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" /> <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> </svg>
@@ -63,7 +118,7 @@ const categories = [
</div> </div>
<!-- Mobile Menu Button --> <!-- 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"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg> </svg>
@@ -73,11 +128,11 @@ const categories = [
<!-- Mobile Menu --> <!-- Mobile Menu -->
<div id="mobile-menu" class="lg:hidden hidden pb-4"> <div id="mobile-menu" class="lg:hidden hidden pb-4">
<nav class="flex flex-col space-y-2"> <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="/" 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-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-green-50 hover:text-green-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="/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-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-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-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-green-50 hover:text-green-600 rounded-lg transition-colors">ติดต่อเรา</a>
</nav> </nav>
</div> </div>
</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; 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 siteName = 'Deal Plus Tech';
const siteUrl = 'https://dealplustech.co.th'; 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"> <BaseLayout title="ระบบวาล์วเติมอากาศ DURGO AVVs" description="ระบบวาล์วเติมอากาศ DURGO AVVs ทดแทนท่อระบายอากาศของระบบท่อน้ำทิ้งแบบเก่า จะช่วยเพิ่มประสิทธิภาพของการเติมอากาศเข้าระบบ และช่วยป้องกันไม่ให้น้าถูกดึงออกจาก Trap">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </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"> <BaseLayout title="กริลแอร์พลาสติก (Grilles air plastic)" description="กริลแอร์พลาสติก (Grilles air plastic) หัวจ่ายลม หน้ากากแอร์ กริลรีเทริน์ (Grilles Return) ยี่ห้อ Deal Plus Tech ในระบบปรับอากาศและระบบระบายอากาศที่ใช้ท่อ Duct">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="กรู๊ฟท่อ (Groove Coupling)" description="กรู๊ฟท่อ ติดตั้งง่าย สะดวกรวดเร็ว ทำให้ประหยัดค่าแรงและเวลาในการติดตั้ง นอกจากนี้ยังคล่องตัวรองรับการออกแบบที่หลากหลายตามแต่สภาพ สามารถย้ายเปลี่ยนรูปแบบง่าย"> <BaseLayout title="กรู๊ฟท่อ (Groove Coupling)" description="กรู๊ฟท่อ ติดตั้งง่าย สะดวกรวดเร็ว ทำให้ประหยัดค่าแรงและเวลาในการติดตั้ง นอกจากนี้ยังคล่องตัวรองรับการออกแบบที่หลากหลายตามแต่สภาพ สามารถย้ายเปลี่ยนรูปแบบง่าย">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -2,100 +2,90 @@
import BaseLayout from '@/layouts/BaseLayout.astro'; import BaseLayout from '@/layouts/BaseLayout.astro';
import Header from '@/components/common/Header.astro'; import Header from '@/components/common/Header.astro';
import Footer from '@/components/common/Footer.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="หน้าแรก"> <BaseLayout title="หน้าแรก">
<Header slot="header" /> <Header slot="header" />
<!-- Hero Section --> <!-- Hero Section with PPR Product Images -->
<section class="relative gradient-bg section overflow-hidden"> <section class="relative bg-gradient-to-br from-green-50 via-white to-accent-50 section overflow-hidden">
<div class="container-custom"> <div class="container-custom">
<div class="grid lg:grid-cols-2 gap-12 items-center"> <div class="grid lg:grid-cols-2 gap-12 items-center">
<div class="animate-fade-in"> <div class="animate-fade-in">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-secondary-900 mb-6 leading-tight"> <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-secondary-900 mb-6 leading-tight">
ผู้เชี่ยวชาญระบบน้ำ<br/> ผู้เชี่ยวชาญระบบน้ำ<br/>
<span class="gradient-text">คุณภาพสูง ราคาโรงงาน</span> <span class="text-green-600">คุณภาพสูง ราคาโรงงาน</span>
</h1> </h1>
<p class="text-xl text-secondary-600 mb-8 leading-relaxed"> <p class="text-xl text-secondary-600 mb-8 leading-relaxed">
บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชี่ยวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชี่ยวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่ายท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก
</p> </p>
<div class="flex flex-wrap gap-4"> <div class="flex flex-wrap gap-4">
<a href="/product" class="btn-primary 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="btn-secondary text-lg px-8 py-4">ติดต่อเรา</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>
<div class="flex items-center space-x-8 mt-12"> <div class="flex items-center space-x-8 mt-12">
<div> <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 class="text-secondary-600 text-base">ปีประสบการณ์</div>
</div> </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 class="text-secondary-600 text-base">โปรเจคต์</div>
</div> </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 class="text-secondary-600 text-base">สินค้า</div>
</div> </div>
</div> </div>
</div> </div>
<div class="relative animate-slide-up"> <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> <div class="absolute inset-0 bg-gradient-to-br from-green-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="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> </div>
</div> </div>
</section> </section>
<!-- Featured Categories --> <!-- Product Categories -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<div class="text-center mb-16"> <div class="text-center mb-16">
<h2 class="section-title">หมวดหมู่สินค้ายอดนิยม</h2> <h2 class="section-title">หมวดหมู่สินค้ายอดนิยม</h2>
<p class="section-subtitle mx-auto">เราจำหน่ายสินค้าระบบน้ำคุณภาพสูง ครบวงจร</p> <p class="section-subtitle mx-auto">เราจำหน่ายสินค้าระบบน้ำคุณภาพสูง ครบวงจร</p>
</div> </div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<a href="/ท่อ-ppr-thai-ppr" class="product-card group"> {categories.map(cat => (
<a href={cat.slug} class="product-card group">
<div class="product-card-image"> <div class="product-card-image">
<img src="/images/products/ppr-pipe/ppr0001.jpg" alt="ท่อ PPR" /> <img src={cat.image} alt={cat.name} onerror="this.src='/images/logo/dealplustech-logo.png'" />
</div> </div>
<div class="p-6"> <div class="p-6">
<h3 class="text-xl font-bold text-secondary-900 group-hover:text-primary-600 transition-colors">ท่อ PPR</h3> <h3 class="text-xl font-bold text-secondary-900 group-hover:text-green-600 transition-colors">{cat.name}</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> </div>
</a> </a>
))}
</div> </div>
</div> </div>
</section> </section>
<!-- Why Choose Us --> <!-- 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="container-custom">
<div class="text-center mb-16"> <div class="text-center mb-16">
<h2 class="section-title">ทำไมต้องเลือกเรา</h2> <h2 class="section-title">ทำไมต้องเลือกเรา</h2>
@@ -103,8 +93,8 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
<div class="grid md:grid-cols-3 gap-8"> <div class="grid md:grid-cols-3 gap-8">
<div class="card p-8 text-center animate-on-scroll"> <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"> <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-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <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" /> <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> </svg>
</div> </div>
@@ -112,8 +102,8 @@ import Footer from '@/components/common/Footer.astro';
<p class="text-secondary-600 text-base">สินค้าคุณภาพมาตรฐาน มั่นใจได้ในความทนทาน</p> <p class="text-secondary-600 text-base">สินค้าคุณภาพมาตรฐาน มั่นใจได้ในความทนทาน</p>
</div> </div>
<div class="card p-8 text-center animate-on-scroll"> <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"> <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-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <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" /> <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> </svg>
</div> </div>
@@ -121,13 +111,13 @@ import Footer from '@/components/common/Footer.astro';
<p class="text-secondary-600 text-base">ราคาแข่งขันได้ คุ้มค่าต่อการลงทุน</p> <p class="text-secondary-600 text-base">ราคาแข่งขันได้ คุ้มค่าต่อการลงทุน</p>
</div> </div>
<div class="card p-8 text-center animate-on-scroll"> <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"> <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-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg> </svg>
</div> </div>
<h3 class="text-2xl font-bold text-secondary-900 mb-4">จัดส่งรวดเร็ว</h3> <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> </div>
</div> </div>
@@ -137,7 +127,6 @@ import Footer from '@/components/common/Footer.astro';
</BaseLayout> </BaseLayout>
<script> <script>
// Intersection Observer for scroll animations
const observer = new IntersectionObserver( const observer = new IntersectionObserver(
entries => { entries => {
entries.forEach(entry => { entries.forEach(entry => {

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ข้อต่อท่อ (Pipe Coupling)" description="ข้อต่อท่อ ข้อต่อซ่อมท่อแตก ซ่อมท่อร้าวและซ่อมท่อรั่วซึม นวัตกรรมที่ทันสมัยที่สุดการต่อท่อ-ซ่อมท่อ สะดวกและง่ายที่สุด เป็นระบบการต่อท่อที่จะช่วยให้คุณประหยัดเงิน"> <BaseLayout title="ข้อต่อท่อ (Pipe Coupling)" description="ข้อต่อท่อ ข้อต่อซ่อมท่อแตก ซ่อมท่อร้าวและซ่อมท่อรั่วซึม นวัตกรรมที่ทันสมัยที่สุดการต่อท่อ-ซ่อมท่อ สะดวกและง่ายที่สุด เป็นระบบการต่อท่อที่จะช่วยให้คุณประหยัดเงิน">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </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"> <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" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง" description="ปั๊มพ์น้ำ คุณภาพสูง ก่อนเลือกปั๊มพ์ต้องเข้าใจระบบ บริษัทจะช่วยให้ท่านประหยัดพลังงานช่วยโลกได้อีกแรง ปั๊มพ์ที่ท่านต้องการเป็นปั๊มพ์ประเภทใด บริษัท ช่วยคุณได้"> <BaseLayout title="ปั๊มพ์น้ำ (Water Pump) คุณภาพสูง" description="ปั๊มพ์น้ำ คุณภาพสูง ก่อนเลือกปั๊มพ์ต้องเข้าใจระบบ บริษัทจะช่วยให้ท่านประหยัดพลังงานช่วยโลกได้อีกแรง ปั๊มพ์ที่ท่านต้องการเป็นปั๊มพ์ประเภทใด บริษัท ช่วยคุณได้">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </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"> <BaseLayout title="ระบบกรองน้ำดี (Water Treatment)" description="ระบบผลิตน้ำประปาและระบบผลิตน้ำบริสุทธิ์ ระบบผลิตน้ำประปา ระบบผลิตน้ำ DI Ultrafiltration system Reverse osmosis system">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อ PPR | Thai PPR" description="ท่อ Thai PPR ส่งฟรี กรุงเทพมหานคร ปริมณฑล สามารถสอบถามไ"> <BaseLayout title="ท่อ PPR | Thai PPR" description="ท่อ Thai PPR ส่งฟรี กรุงเทพมหานคร ปริมณฑล สามารถสอบถามไ">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ" description="ท่อ uPVC มีลักษณะภายนอกคล้ายกับพลาสติก uPVC สีขาวแต่มีการพัฒนาอย่างต่อเนื่องมามากกว่า 40 ปีเพื่อให้ทนทานต่อทุกสภาวะอากาศทั่วโลก"> <BaseLayout title="ท่อ uPVC ทนทานต่อทุกสภาวะอากาศ" description="ท่อ uPVC มีลักษณะภายนอกคล้ายกับพลาสติก uPVC สีขาวแต่มีการพัฒนาอย่างต่อเนื่องมามากกว่า 40 ปีเพื่อให้ทนทานต่อทุกสภาวะอากาศทั่วโลก">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อเอชดีพีอี (HDPE Pipe)" description="ท่อเอชดีพีอี (HDPE Pipe) จำหน่ายท่อ PE ,ท่อ PE คุณภาพสูง ทนทานต่อการกัดกร่อนของสารเคมีได้หลายชนิด ไม่เป็นสนิม น้ำหนักเบา ง่ายต่อการขนส่ง อายุการใช้งานยาวนาน"> <BaseLayout title="ท่อเอชดีพีอี (HDPE Pipe)" description="ท่อเอชดีพีอี (HDPE Pipe) จำหน่ายท่อ PE ,ท่อ PE คุณภาพสูง ทนทานต่อการกัดกร่อนของสารเคมีได้หลายชนิด ไม่เป็นสนิม น้ำหนักเบา ง่ายต่อการขนส่ง อายุการใช้งานยาวนาน">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" description="ท่อพีพีอาร์ ตราช้าง เหมาะแก่การทำท่อน้ำดื่ม ท่อน้ำร้อน ท่อน้ำเย็น ระบบประปา เพราะการติดตั้งท่อจะใช้วิธีให้ความร้อนทำให้ท่อประสานเป็นเนื้อเดียวกันจึงไม่รั่วซึม"> <BaseLayout title="ท่อพีพีอาร์ (ท่อ PPR) ตราช้าง" description="ท่อพีพีอาร์ ตราช้าง เหมาะแก่การทำท่อน้ำดื่ม ท่อน้ำร้อน ท่อน้ำเย็น ระบบประปา เพราะการติดตั้งท่อจะใช้วิธีให้ความร้อนทำให้ท่อประสานเป็นเนื้อเดียวกันจึงไม่รั่วซึม">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,16 +7,97 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" description="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ ผลิตจากโรงงาน Poloplast ผ่านการรับรองคุณภาพจาก SKZ ประเทศเยอรมัน ตามมาตตรฐาน EN 1451-1 ได้รับการดูแลตรวจสอบคุณภาพ"> <BaseLayout title="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT" description="ท่อระบายน้ำ 3 ชั้น ไซเลนท์ ผลิตจากโรงงาน Poloplast ผ่านการรับรองคุณภาพจาก SKZ ประเทศเยอรมัน ตามมาตตรฐาน EN 1451-1 ได้รับการดูแลตรวจสอบคุณภาพ">
<Header slot="header" /> <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"> <section class="section">
<div class="container-custom"> <div class="container-custom">
<div class="max-w-4xl mx-auto"> <div class="grid lg:grid-cols-2 gap-12 items-start">
<h1 class="text-4xl md:text-5xl font-bold text-secondary-900 mb-8">ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT</h1> <!-- Product Images -->
<div class="card p-8 md:p-12 bg-white"> <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"> <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> <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>
</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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อและข้อต่อพีวีซี (PVC pipe)" description="ท่อและข้อต่อพีวีซี เป็นวัสดุประเภทท่อประปาที่นิยมใช้งานในประเทศไทยมากที่สุดในปัจจุบัน หาซื้อได้ง่ายตามร้านค้าวัสดุก่อสร้างทั่วไป มีหลายคุณภาพและราคาให้เลือกใช้"> <BaseLayout title="ท่อและข้อต่อพีวีซี (PVC pipe)" description="ท่อและข้อต่อพีวีซี เป็นวัสดุประเภทท่อประปาที่นิยมใช้งานในประเทศไทยมากที่สุดในปัจจุบัน หาซื้อได้ง่ายตามร้านค้าวัสดุก่อสร้างทั่วไป มีหลายคุณภาพและราคาให้เลือกใช้">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,16 +7,97 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" description="ท่อไซเลอร์ ท่อเหล็กเหล็กบุพีอี เป็นท่อเหล็กกล้า Class M ชุบสังกะสี ภายนอกเคลือบด้วยผงโพลีเอทิลีน (PEpowder coat) ป้องกันสนิมอีกชั้นหนึ่ง อายุการใช้งานที่ยาวนาน"> <BaseLayout title="ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี" description="ท่อไซเลอร์ ท่อเหล็กเหล็กบุพีอี เป็นท่อเหล็กกล้า Class M ชุบสังกะสี ภายนอกเคลือบด้วยผงโพลีเอทิลีน (PEpowder coat) ป้องกันสนิมอีกชั้นหนึ่ง อายุการใช้งานที่ยาวนาน">
<Header slot="header" /> <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"> <section class="section">
<div class="container-custom"> <div class="container-custom">
<div class="max-w-4xl mx-auto"> <div class="grid lg:grid-cols-2 gap-12 items-start">
<h1 class="text-4xl md:text-5xl font-bold text-secondary-900 mb-8">ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี</h1> <!-- Product Images -->
<div class="card p-8 md:p-12 bg-white"> <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"> <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> <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>
</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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="พุกเหล็ก | SLEEVE ANCHOR BOLT" description="พุกเหล็ก | SLEEVE ANCHOR BOLT ส่งฟรี กรุงเทพมหานคร ปริม"> <BaseLayout title="พุกเหล็ก | SLEEVE ANCHOR BOLT" description="พุกเหล็ก | SLEEVE ANCHOR BOLT ส่งฟรี กรุงเทพมหานคร ปริม">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ยูโบลท์ | U-Bolt" description="ยูโบลท์ (เหล็ก) | U-BOLT ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส"> <BaseLayout title="ยูโบลท์ | U-Bolt" description="ยูโบลท์ (เหล็ก) | U-BOLT ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ยูโบลท์ + ประกับ | U-BOLT CLAMP" description="ยูโบลท์ + ประกับ | U-BOLT CLAMP ส่งฟรี กรุงเทพมหานคร ปร"> <BaseLayout title="ยูโบลท์ + ประกับ | U-BOLT CLAMP" description="ยูโบลท์ + ประกับ | U-BOLT CLAMP ส่งฟรี กรุงเทพมหานคร ปร">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" description="ระบบรั้วไวน์แมน ผลิตจากลวดกึ่งสปริง คิดค้นและออกแบบรอยหยักบนเส้นลวดในแนวนอน สามารถสปริงตัวได้ รั้วไม่ยืดหรือหย่อยตัวง่าย มีความแข็งแรง ยืดหยุ่นสูง คืนตัวได้ดี"> <BaseLayout title="ระบบรั้วไวน์แมน Vineman รั้วตาข่าย ลวดหนาม" description="ระบบรั้วไวน์แมน ผลิตจากลวดกึ่งสปริง คิดค้นและออกแบบรอยหยักบนเส้นลวดในแนวนอน สามารถสปริงตัวได้ รั้วไม่ยืดหรือหย่อยตัวง่าย มีความแข็งแรง ยืดหยุ่นสูง คืนตัวได้ดี">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="วาล์ว Valve" description="วาล์ว จำหน่ายวาล์วและ process valve ชนิดต่างๆ ทั้งแบบออโต้และมือหมุน สินค้าวาล์ว Valve มีให้เลือกหลายแบบหลายประเภท ตอบทุกโจทย์การใช้งาน"> <BaseLayout title="วาล์ว Valve" description="วาล์ว จำหน่ายวาล์วและ process valve ชนิดต่างๆ ทั้งแบบออโต้และมือหมุน สินค้าวาล์ว Valve มีให้เลือกหลายแบบหลายประเภท ตอบทุกโจทย์การใช้งาน">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </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"> <BaseLayout title="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER" description="สปริทริงแฮงเกอร์ (SR19) | ADJUSTABLE SPLIT RING HANGER">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </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 คุณภาพสูง ราคาถูก จากโรงงานผู้ผลิตโดยตรง เราเป็นตัวแทนจำหน่ายจากโรงงานโดยตรง จึงทำให้ราคาถูก"> <BaseLayout title="เครื่องเชื่อมท่อ PE, HDPE, PP-R" description="จำหน่ายเครื่องเชื่อมท่อ PB, HDPE, PP-R คุณภาพสูง ราคาถูก จากโรงงานผู้ผลิตโดยตรง เราเป็นตัวแทนจำหน่ายจากโรงงานโดยตรง จึงทำให้ราคาถูก">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="เครื่องเชื่อมท่อ | Pipe Coupling Machine" description="เครื่องเชื่อมท่อ | Pipe Coupling Machine ส่งฟรี กรุงเทพ"> <BaseLayout title="เครื่องเชื่อมท่อ | Pipe Coupling Machine" description="เครื่องเชื่อมท่อ | Pipe Coupling Machine ส่งฟรี กรุงเทพ">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="เครื่องเชื่อมท่อพีพีอาร์" description="เครื่องเชื่อมท่อพีพีอาร์ ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส"> <BaseLayout title="เครื่องเชื่อมท่อพีพีอาร์" description="เครื่องเชื่อมท่อพีพีอาร์ ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </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 ส่งฟรี กรุงเทพมหานคร"> <BaseLayout title="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt" description="เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt ส่งฟรี กรุงเทพมหานคร">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" description="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak"> <BaseLayout title="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak)" description="ฉนวนหุ้มท่อแอร์ ฉนวนหุ้มท่อน้ำ เทอร์โมเบรค (Thermobreak">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="แคล้มฟันจระเข้ | BEAM CLAMP" description="แคล้มฟันจระเข้ (แคล้มฟันเล็กType1/แคล้มฟันใหญ่Type1W) ("> <BaseLayout title="แคล้มฟันจระเข้ | BEAM CLAMP" description="แคล้มฟันจระเข้ (แคล้มฟันเล็กType1/แคล้มฟันใหญ่Type1W) (">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" description="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER ส่งฟรี กรุงเทพมหาน"> <BaseLayout title="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER" description="แคล้มหยดน้ำ | ADJUSTABLE BAND HANGER ส่งฟรี กรุงเทพมหาน">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -7,7 +7,7 @@ import Footer from '@/components/common/Footer.astro';
<BaseLayout title="แคล้มเลเวล | LEVEL CLAMP" description="แคล้มเลเวล | LEVEL CLAMP ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส"> <BaseLayout title="แคล้มเลเวล | LEVEL CLAMP" description="แคล้มเลเวล | LEVEL CLAMP ส่งฟรี กรุงเทพมหานคร ปริมณฑล ส">
<Header slot="header" /> <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 --> <!-- Hero Section -->
<section class="section"> <section class="section">
<div class="container-custom"> <div class="container-custom">
@@ -15,7 +15,11 @@ import Footer from '@/components/common/Footer.astro';
<!-- Product Images --> <!-- Product Images -->
<div class="space-y-6"> <div class="space-y-6">
<div class="card p-8 bg-white"> <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>
</div> </div>
@@ -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> <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> <span>แชท Line</span>
</a> </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> <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> <span>090-555-1415</span>
</a> </a>
@@ -43,25 +47,25 @@ import Footer from '@/components/common/Footer.astro';
<!-- Features --> <!-- Features -->
<div class="mt-12 space-y-4"> <div class="mt-12 space-y-4">
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span> <span class="text-base text-secondary-700">คุณภาพสูง มาตรฐานอุตสาหกรรม</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span> <span class="text-base text-secondary-700">ราคาโรงงาน คุ้มค่า</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span> <span class="text-base text-secondary-700">จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล</span>
</div> </div>
<div class="flex items-start space-x-3"> <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" /> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg> </svg>
<span class="text-base text-secondary-700">รับประกันสินค้า</span> <span class="text-base text-secondary-700">รับประกันสินค้า</span>
@@ -72,12 +76,12 @@ import Footer from '@/components/common/Footer.astro';
</div> </div>
</section> </section>
<!-- Product Details --> <!-- Product Details with REAL Content -->
<section class="section bg-white"> <section class="section bg-white">
<div class="container-custom"> <div class="container-custom">
<h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2> <h2 class="text-3xl font-bold text-secondary-900 mb-8">รายละเอียดสินค้า</h2>
<div class="prose prose-lg max-w-none"> <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>
</div> </div>
</section> </section>

View File

@@ -8,16 +8,28 @@ export default {
}, },
colors: { colors: {
primary: { primary: {
50: '#eff6ff', 50: '#f0fdf4',
100: '#dbeafe', 100: '#dcfce7',
200: '#bfdbfe', 200: '#bbf7d0',
300: '#93c5fd', 300: '#86efac',
400: '#60a5fa', 400: '#4ade80',
500: '#3b82f6', 500: '#3f8b6d', // Original green from dealplustech.co.th
600: '#2563eb', 600: '#3aaf55', // Bright green accent
700: '#1d4ed8', 700: '#2f855a',
800: '#1e40af', 800: '#276749',
900: '#1e3a8a', 900: '#22543d',
},
accent: {
50: '#fff7ed',
100: '#ffedd5',
200: '#fed7aa',
300: '#fdba74',
400: '#fb923c',
500: '#e35c18', // Original orange from dealplustech.co.th
600: '#c2410c',
700: '#9a3412',
800: '#7c2d12',
900: '#431407',
}, },
secondary: { secondary: {
50: '#f8fafc', 50: '#f8fafc',
@@ -31,18 +43,6 @@ export default {
800: '#1e293b', 800: '#1e293b',
900: '#0f172a', 900: '#0f172a',
}, },
accent: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444',
600: '#dc2626',
700: '#b91c1c',
800: '#991b1b',
900: '#7f1d1d',
},
}, },
fontSize: { fontSize: {
base: ['18px', { lineHeight: '1.6' }], base: ['18px', { lineHeight: '1.6' }],