diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..09ec6d8 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,90 @@ +# dealplustech-astro/ + +**Generated:** 2026-03-27 +**Branch:** main + +## OVERVIEW + +Astro 5.x Thai industrial e-commerce site (dealplustech.co.th). Migrated from WordPress. PDPA-compliant cookie consent, Umami analytics, 63 pages, 45 Thai-named routes. + +## STRUCTURE + +``` +dealplustech-astro/ +├── src/ +│ ├── components/ # .astro components (common/, consent/, product/, ui/) +│ ├── content/ # Astro content collections (blog/, products/) - EMPTY +│ ├── layouts/ # BaseLayout.astro (root HTML shell) +│ ├── pages/ # 45 Thai-named static routes + index.astro +│ ├── styles/ # global.css +│ ├── images/ # ppr-tables/ (product reference images) +│ └── lib/ # EMPTY +├── public/ +│ ├── images/ # All product/corporate images (dist/, public/ mirrored) +│ └── documents/ # PDF price lists (11 PDFs linked from product pages) +├── db/ # EMPTY (SQLite/Turso for consent logs at runtime) +├── astro.config.mjs # Astro config: site URL, i18n (th only), sitemap +├── tailwind.config.js # Kanit font, custom colors (primary green, accent orange) +├── Dockerfile # Multi-stage: node:20-alpine → nginx:alpine +└── package.json # Scripts: dev, build, preview, db:push, db:seed +``` + +## WHERE TO LOOK + +| Task | Location | Notes | +|------|----------|-------| +| Global layout | `src/layouts/BaseLayout.astro` | HTML shell, SEO meta, cookie consent | +| Homepage | `src/pages/index.astro` | 13KB - main entry | +| Product pages | `src/pages/[thai-url]/index.astro` | 45 static routes | +| Header/Footer | `src/components/common/` | Header.astro, Footer.astro | +| Cookie consent | `src/components/consent/` | EMPTY - handled via astro-consent | +| API routes | `src/pages/api/` | EMPTY - no API routes configured | +| Content config | `src/content.config.ts` | Content collections definition | + +## CONVENTIONS + +- **Thai URLs only** — Never use English URLs for routes +- **Astro components** — `.astro` files with frontmatter imports +- **Kanit font** — Thai-optimized, set in tailwind.config.js +- **Cookie consent** — astro-consent package, blocks analytics until accepted +- **Umami analytics** — Requires `UMAMI_WEBSITE_ID` env var +- **Admin password** — Required for consent log access at `/admin/consent-logs` + +## ANTI-PATTERNS (THIS PROJECT) + +- Do NOT add TypeScript entry points (no `src/main.ts`) +- Do NOT use English route names — SEO depends on Thai URLs +- Do NOT modify `dist/` directly — it's gitignored build output +- Do NOT run crawlers from Python in production environment +- Do NOT commit `.env` files + +## UNIQUE STYLES + +- **Custom Tailwind colors**: primary (green #3f8b6d), accent (orange #e35c18) +- **PDPA compliance**: 14-disclosure privacy policy, granular cookie consent +- **Custom animations**: fade-in, slide-up, slide-down, scale-in +- **i18n**: Thai-only site, `prefixDefaultLocale: false` +- **Image organization**: Mirrored `public/images/` and `dist/images/` + +## COMMANDS + +```bash +cd dealplustech-astro + +npm install # Install dependencies +npm run dev # Dev server at localhost:4321 +npm run build # Production build → dist/ +npm run preview # Preview built site + +# Database +npm run db:push # Push schema to SQLite/Turso +npm run db:seed # Seed database +``` + +## NOTES + +- **No tests** — `package.json` has no test script +- **Easypanel deploy** — Auto-deploys on push to main, uses `npm install` then `npm run build` +- **Image pipeline** — Python `image_processor.py` processes downloaded images +- **Consent logs** — SQLite at `db/consent.db` (gitignored), or Turso if configured +- **PDF price lists** — 11 PDFs in `public/documents/`, linked from 7 product pages with "ราคาสินค้า" section diff --git a/public/documents/16 Price List Armaflex 2567.pdf b/public/documents/16 Price List Armaflex 2567.pdf new file mode 100644 index 0000000..e1e5487 Binary files /dev/null and b/public/documents/16 Price List Armaflex 2567.pdf differ diff --git a/public/documents/19 Pricelist Aeroflex (update 2565).pdf b/public/documents/19 Pricelist Aeroflex (update 2565).pdf new file mode 100644 index 0000000..d1da9d4 Binary files /dev/null and b/public/documents/19 Pricelist Aeroflex (update 2565).pdf differ diff --git a/public/documents/2026-New Update Thermobreak Price List.pdf b/public/documents/2026-New Update Thermobreak Price List.pdf new file mode 100644 index 0000000..8ffaca0 Binary files /dev/null and b/public/documents/2026-New Update Thermobreak Price List.pdf differ diff --git a/public/documents/22 Price List Maxflex แบบม้วน FR Roll MSR15M.pdf b/public/documents/22 Price List Maxflex แบบม้วน FR Roll MSR15M.pdf new file mode 100644 index 0000000..aeee428 Binary files /dev/null and b/public/documents/22 Price List Maxflex แบบม้วน FR Roll MSR15M.pdf differ diff --git a/public/documents/22 Price list MAXFLEX แบบท่อน FR ST_Rev05_01012025 29-1-68.pdf b/public/documents/22 Price list MAXFLEX แบบท่อน FR ST_Rev05_01012025 29-1-68.pdf new file mode 100644 index 0000000..1c1d769 Binary files /dev/null and b/public/documents/22 Price list MAXFLEX แบบท่อน FR ST_Rev05_01012025 29-1-68.pdf differ diff --git a/public/documents/PRICE LIST_SANWA 02.02.69 1.pdf b/public/documents/PRICE LIST_SANWA 02.02.69 1.pdf new file mode 100644 index 0000000..cea7014 Binary files /dev/null and b/public/documents/PRICE LIST_SANWA 02.02.69 1.pdf differ diff --git a/public/documents/PRICE-LIST_TPPR_V28-2023 [26012023].pdf b/public/documents/PRICE-LIST_TPPR_V28-2023 [26012023].pdf new file mode 100644 index 0000000..3fe4cde Binary files /dev/null and b/public/documents/PRICE-LIST_TPPR_V28-2023 [26012023].pdf differ diff --git a/public/documents/Price List HDPE TAP.pdf b/public/documents/Price List HDPE TAP.pdf new file mode 100644 index 0000000..20e698a Binary files /dev/null and b/public/documents/Price List HDPE TAP.pdf differ diff --git a/public/documents/Price List MECH_V13-2021 [260864](1).pdf b/public/documents/Price List MECH_V13-2021 [260864](1).pdf new file mode 100644 index 0000000..bb32c44 Binary files /dev/null and b/public/documents/Price List MECH_V13-2021 [260864](1).pdf differ diff --git a/public/documents/Price List XYLENT_Novat_V12-2022 [080265]_220727_155718 (1).pdf b/public/documents/Price List XYLENT_Novat_V12-2022 [080265]_220727_155718 (1).pdf new file mode 100644 index 0000000..3699575 Binary files /dev/null and b/public/documents/Price List XYLENT_Novat_V12-2022 [080265]_220727_155718 (1).pdf differ diff --git a/public/documents/Price List_novat_18-1-64_210723_094815.pdf b/public/documents/Price List_novat_18-1-64_210723_094815.pdf new file mode 100644 index 0000000..2008f41 Binary files /dev/null and b/public/documents/Price List_novat_18-1-64_210723_094815.pdf differ diff --git a/public/documents/เอสซีเจ ปี68.pdf b/public/documents/เอสซีเจ ปี68.pdf new file mode 100644 index 0000000..fc84696 Binary files /dev/null and b/public/documents/เอสซีเจ ปี68.pdf differ diff --git a/src/components/common/Footer.astro b/src/components/common/Footer.astro index 4e5c61a..7d69335 100644 --- a/src/components/common/Footer.astro +++ b/src/components/common/Footer.astro @@ -11,7 +11,6 @@ const mainCategories = [ { name: 'เครื่องเชื่อม HDPE', slug: '/เครื่องเชื่อม-hdpe' }, { name: 'กรู๊ฟท่อ', slug: '/groove-coupling' }, { name: 'Pipe Coupling', slug: '/pipe-coupling' }, - { name: 'แฮงเกอร์ แคล้ม โบลท์', slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหว' }, { name: 'วาล์ว', slug: '/วาล์ว-valve' }, { name: 'DURGO วาล์วเติมอากาศ', slug: '/durgo-avvs' }, { name: 'ปั๊มน้ำ', slug: '/water-pump' }, diff --git a/src/components/common/Header.astro b/src/components/common/Header.astro index 71a4b65..861fe22 100644 --- a/src/components/common/Header.astro +++ b/src/components/common/Header.astro @@ -27,26 +27,6 @@ const categories = [ { name: 'เม็กกรู๊ฟ', slug: '/เม็กกรู๊ฟ-คับปลิ้ง' }, ] }, - { - name: 'แฮงเกอร์ แคล้ม โบลท์', - slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหว', - subcategories: [ - { name: 'สปริทริงแฮงเกอร์', slug: '/สปริทริงแฮงเกอร์-sr19-adjustable-split-ring-hanger' }, - { name: 'เควิสแฮงเกอร์', slug: '/เควิสแฮงเกอร์' }, - { name: 'แคล้มประกับ', slug: '/แคล้มประกับ-ชุบรุ้ง-ชุบ' }, - { name: 'แคล้มฟันจระเข้', slug: '/แคล้มฟันจระเข้-beam-clamp' }, - { name: 'แคล้มหยดน้ำ', slug: '/แคล้มหยดน้ำ-adjustable-band-hanger' }, - { name: 'แคล้มเลเวล', slug: '/แคล้มเลเวล-level-clamp' }, - { name: 'ยูโบลท์', slug: '/ยูโบลท์-u-bolt' }, - { name: 'ยูโบลท์ ประกับ', slug: '/ยูโบลท์-ประกับ-u-bolt-clamp' }, - { name: 'ยูโบลท์เหล็กแผ่น', slug: '/ยูโบลท์เหล็กแผ่น-ยูแบน-strap' }, - { name: 'เจโบลท์ แอลโบลท์', slug: '/เจโบลท์-แอลโบลท์-j-bolt-l-bolt' }, - { name: 'น็อต แหวน สกรู', slug: '/น็อต-แหวน-สกรู-hex-nut-flat-washer-hexagon-head-screw' }, - { name: 'พุกต่างๆ', slug: '/พุกต่างๆ' }, - { name: 'พุกเหล็ก', slug: '/พุกเหล็ก-sleeve-anchor-bolt' }, - { name: 'สตัดเกลียวตลอด', slug: '/สตัดเกลียวตลอด-เหล็ก-threaded-rod' }, - ] - }, { name: 'วาล์ว | Valve', slug: '/วาล์ว-valve' }, { name: 'ปั๊มน้ำ', slug: '/water-pump' }, { name: 'อุปกรณ์ดับเพลิง', slug: '/อุปกรณ์ดับเพลิง' }, @@ -60,7 +40,6 @@ const categories = [ { name: 'กริลแอร์', slug: '/grilles' }, { name: 'ฉนวนหุ้มท่อ', slug: '/ฉนวนหุ้มท่อ-pipe-insulation' }, { name: 'เทอร์โมเบรค', slug: '/เทอร์โมเบรค-thermobreak' }, - { name: 'เครื่องเชื่อม PPR', slug: '/เครื่องเชื่อมท่อพีพีอา' }, ]; --- diff --git a/src/images/ppr-tables/S__32587889.jpg b/src/images/ppr-tables/S__32587889.jpg new file mode 100644 index 0000000..ac6f45f Binary files /dev/null and b/src/images/ppr-tables/S__32587889.jpg differ diff --git a/src/images/ppr-tables/S__32587890-e1465563499254.jpg b/src/images/ppr-tables/S__32587890-e1465563499254.jpg new file mode 100644 index 0000000..6d3f447 Binary files /dev/null and b/src/images/ppr-tables/S__32587890-e1465563499254.jpg differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.39.16-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.39.16-AM.png new file mode 100644 index 0000000..3e19c38 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.39.16-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.42.41-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.42.41-AM.png new file mode 100644 index 0000000..82d4b52 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.42.41-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.22-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.22-AM.png new file mode 100644 index 0000000..5fccf93 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.22-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.28-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.28-AM.png new file mode 100644 index 0000000..fa3de63 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.28-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.36-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.36-AM.png new file mode 100644 index 0000000..b7d7fc3 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.36-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.44-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.44-AM.png new file mode 100644 index 0000000..074f60e Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.44-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.51-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.51-AM.png new file mode 100644 index 0000000..892fae7 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.44.51-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.25-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.25-AM.png new file mode 100644 index 0000000..83b48e4 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.25-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.31-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.31-AM.png new file mode 100644 index 0000000..10fee28 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.31-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.40-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.40-AM.png new file mode 100644 index 0000000..be8a88f Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.51.40-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.55.18-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.55.18-AM.png new file mode 100644 index 0000000..cb43dea Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.55.18-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.57.43-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.57.43-AM.png new file mode 100644 index 0000000..25f3d2c Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.57.43-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.59.24-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.59.24-AM.png new file mode 100644 index 0000000..ef0c206 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.59.24-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-10.59.31-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.59.31-AM.png new file mode 100644 index 0000000..444d7dd Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-10.59.31-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.02.48-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.02.48-AM.png new file mode 100644 index 0000000..0df9592 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.02.48-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.03.05-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.03.05-AM.png new file mode 100644 index 0000000..bcea3df Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.03.05-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.05.36-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.05.36-AM.png new file mode 100644 index 0000000..13e59a7 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.05.36-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.05.45-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.05.45-AM.png new file mode 100644 index 0000000..7e57e8d Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.05.45-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.01-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.01-AM.png new file mode 100644 index 0000000..050ccc8 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.01-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.09-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.09-AM.png new file mode 100644 index 0000000..03541a1 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.09-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.56-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.56-AM.png new file mode 100644 index 0000000..0283037 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.07.56-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.08.03-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.08.03-AM.png new file mode 100644 index 0000000..cd895ec Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.08.03-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.08.55-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.08.55-AM.png new file mode 100644 index 0000000..427c143 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.08.55-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.09.05-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.09.05-AM.png new file mode 100644 index 0000000..0397c62 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.09.05-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.15-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.15-AM.png new file mode 100644 index 0000000..a5862c8 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.15-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.24-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.24-AM.png new file mode 100644 index 0000000..36f6fed Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.24-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.32-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.32-AM.png new file mode 100644 index 0000000..67bcf53 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.10.32-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.22-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.22-AM.png new file mode 100644 index 0000000..dedfb70 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.22-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.30-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.30-AM.png new file mode 100644 index 0000000..40f95f7 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.30-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.38-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.38-AM.png new file mode 100644 index 0000000..0c1365f Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.11.38-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.12.34-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.12.34-AM.png new file mode 100644 index 0000000..773d7f7 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.12.34-AM.png differ diff --git a/src/images/ppr-tables/Screenshot-2023-03-08-at-11.12.42-AM.png b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.12.42-AM.png new file mode 100644 index 0000000..0284e60 Binary files /dev/null and b/src/images/ppr-tables/Screenshot-2023-03-08-at-11.12.42-AM.png differ diff --git a/src/pages/AGENTS.md b/src/pages/AGENTS.md new file mode 100644 index 0000000..47066f5 --- /dev/null +++ b/src/pages/AGENTS.md @@ -0,0 +1,87 @@ +# src/pages/ + +**Generated:** 2026-03-27 +**Parent:** dealplustech-astro/AGENTS.md + +## OVERVIEW + +45 Thai-named static page routes + index.astro homepage. File-based Astro routing with Thai URLs for SEO preservation. + +## STRUCTURE + +``` +src/pages/ +├── index.astro # Homepage (13KB) +├── about-us/ # Corporate +├── contact-us/ # Corporate +├── all-products/ # Product listing +├── all-projects/ # Project listing +├── services/ # Corporate +├── portfolio/ # Corporate +├── join-us/ # Corporate +├── privacy-policy/ # Legal +├── terms-and-conditions/ # Legal +├── product/ # Product detail template +├── api/ # API routes (EMPTY) +│ +├── [Thai-named product routes] +├── ท่อ-ppr-thai-ppr/ # PPR pipes +├── ท่อ-upvc/ # UPVC pipes +├── ท่อhdpe/ # HDPE pipes +├── ท่อพีพีอาร์/ # PPR pipes (alt) +├── ท่อพีพีอาร์ตราช้าง/ # Certified PPR +├── ท่อระบายน้ำ-3-ชั้น-ไซเลนท/ # Drainage pipes +├── ท่อและข้อต่อpvc/ # PVC pipes & fittings +├── ท่อไซเลอร์/ # Cylinder pipes +├── pipe/ # English fallback +├── pipe-coupling/ # Pipe couplings +├── water-pump/ # Water pumps +├── water-treatment/ # Water treatment +├── ฉนวนหุ้มท่อ-pipe-insulation/ # Pipe insulation +├── เครื่องเชื่อม-hdpe/ # HDPE welding machines +├── เครื่องเชื่อมท่อ-pipe-coupling-machine/ +├── เครื่องเชื่อมท่อพีพีอา/ +├── เม็กกรู๊ฟ-คับปลิ้ง/ # Mechanical couplings +├── groove-coupling/ # Groove couplings +├── วาล์ว-valve/ # Valves +├── หัวจ่ายแอร์-ball-jet/ # Air nozzles +├── อุปกรณ์ดับเพลิง/ # Fire fighting equipment +├── เทอร์โมเบรค-thermobreak/ # Thermobreak +├── ระบบรั้ว/ # Fence systems +├── ระบบรั้วไวน์แมน-vineman-2/ # Vineman fence +├── รั้วเทวดา/ # Angel fence +├── dukelarrsen/ # Brand pages +├── durgo-avvs/ +├── grilles/ +├── realflex/ +├── pp-r-pp-rct-poloplast/ +└── ... # 45 total Thai-named routes +``` + +## WHERE TO LOOK + +| Route | Type | Notes | +|-------|------|-------| +| `index.astro` | Homepage | Main entry, large file (13KB) | +| `src/pages/[thai-url]/index.astro` | Static pages | 45 product/category pages | +| `src/pages/admin/` | Admin routes | Consent log viewer | + +## CONVENTIONS + +- **Thai URLs = file path** — Route `dealplustech.co.th/ท่อ-ppr-thai-ppr` = `pages/ท่อ-ppr-thai-ppr/index.astro` +- **Static generation** — All pages pre-rendered at build time +- **No dynamic routes** — No `[slug].astro` patterns (static Thai-named dirs) +- **SEO-critical** — Thai URL preservation is primary migration goal + +## ANTI-PATTERNS + +- Do NOT create English-named page directories +- Do NOT use `getStaticPaths()` — pages are pre-defined +- Do NOT add API routes in `api/` subdir — currently empty + +## NOTES + +- **Product pages** include Line/phone contact buttons +- **Corporate pages** include about-us, contact-us, services, portfolio +- **Legal pages** include privacy-policy, terms-and-conditions (PDPA required) +- **PDF downloads** — 7 product pages have "ราคาสินค้า" section with downloadable PDF price lists from `public/documents/` diff --git a/src/pages/all-products/index.astro b/src/pages/all-products/index.astro index c8ecb36..a8631c1 100644 --- a/src/pages/all-products/index.astro +++ b/src/pages/all-products/index.astro @@ -19,20 +19,6 @@ const productImages: Record = { '/pipe-coupling': '/images/pipe-coupling/BG-SMC02.png', '/dukelarrsen': '/images/dukelarrsen/dukelarrsen-43.jpg', '/เม็กกรู๊ฟ-คับปลิ้ง': '/images/products-cropped/mech_000C.jpg', - '/สปริทริงแฮงเกอร์-sr19-adjustable-split-ring-hanger': '/images/products-cropped/SR19_000C.jpg', - '/เควิสแฮงเกอร์': '/images/products-cropped/clevis-hanger_000C.jpg', - '/แคล้มประกับ-ชุบรุ้ง-ชุบ': '/images/products-cropped/clamp_000C.jpg', - '/แคล้มฟันจระเข้-beam-clamp': '/images/products-cropped/beam-clamp_000C.jpg', - '/แคล้มหยดน้ำ-adjustable-band-hanger': '/images/products-cropped/band-hanger_000C.jpg', - '/แคล้มเลเวล-level-clamp': '/images/products-cropped/level-clamp_000C.jpg', - '/ยูโบลท์-u-bolt': '/images/products-cropped/u-bolt_000C.jpg', - '/ยูโบลท์-ประกับ-u-bolt-clamp': '/images/products-cropped/u-bolt-clamp_000C.jpg', - '/ยูโบลท์เหล็กแผ่น-ยูแบน-strap': '/images/products-cropped/strap_000C.jpg', - '/เจโบลท์-แอลโบลท์-j-bolt-l-bolt': '/images/products-cropped/j-bolt_000C.jpg', - '/น็อต-แหวน-สกรู-hex-nut-flat-washer-hexagon-head-screw': '/images/products-cropped/bolt-nut_000C.jpg', - '/พุกต่างๆ': '/images/products-cropped/anchor_000C.jpg', - '/พุกเหล็ก-sleeve-anchor-bolt': '/images/products-cropped/sleeve-anchor_000C.jpg', - '/สตัดเกลียวตลอด-เหล็ก-threaded-rod': '/images/products-cropped/threaded-rod_000C.jpg', '/วาล์ว-valve': '/images/products-cropped/valve_000C.jpg', '/durgo-avvs': '/images/products-cropped/durgo_000C.jpg', '/water-pump': '/images/products-cropped/water-pump_000C.jpg', diff --git a/src/pages/dukelarrsen/index.astro b/src/pages/dukelarrsen/index.astro index 34367de..c9d0337 100644 --- a/src/pages/dukelarrsen/index.astro +++ b/src/pages/dukelarrsen/index.astro @@ -180,17 +180,125 @@ import Footer from '@/components/common/Footer.astro';

Rigid Coupling DUKELARRSEN

- Rigid Coupling + Rigid Coupling + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Bolt Size
mm
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
ØLH
25
1
33.7
1.327
2-M10 × 45579744300
2.07
FM UL
32
1 1/4
42.4
1.669
2-M10 × 4567107.544300
2.07
FM UL
40
1 1/2
48.3
1.900
2-M10 × 457211444300
2.07
FM UL
50
2
60.3
2.375
2-M10 × 558512545300
2.07
FM UL
65
2 1/2
73.0
2.875
2-M10 × 559813745300
2.07
FM UL
65
2 1/2
76.1
3.000
2-M10 × 5510013945300
2.07
FM UL
80
3
88.9
3.500
2-M10 × 5511416045300
2.07
FM UL
100
4
114.3
4.500
2-M12 × 65147.219350300
2.07
FM UL
125
5
141.3
5.563
2-M12 × 7517022250300
2.07
FM UL
125
5
139.7
5.500
2-M12 × 7517022250300
2.07
FM UL
150
6
165.1
6.500
2-M12 × 7520324850300
2.07
FM UL
150
6
168.3
6.625
2-M12 × 7520525450300
2.07
FM UL
200
8
219.1
8.625
2-M16 × 8525733058300
2.07
FM UL
250
10
273.0
10.750
2-M20 × 13032842062300
2.07
FM UL
300
12
323.9
12.750
2-M20 × 13038045463300
2.07
FM UL
+
+

* ข้อมูลจำเพาะอาจเปลี่ยนแปลงได้ กรุณาติดต่อฝ่ายขายเพื่อยืนยัน

Flexible Coupling DUKELARRSEN

- Flexible Coupling + Flexible Coupling +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Bolt Size
mm
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
ØLH
25
1
33.7
1.327
2-M10 × 45579744300
2.07
FM UL
32
1 1/4
42.4
1.669
2-M10 × 456710744300
2.07
FM UL
40
1 1/2
48.3
1.900
2-M10 × 457211444300
2.07
FM UL
50
2
60.3
2.375
2-M10 × 558512545300
2.07
FM UL
65
2 1/2
73.0
2.875
2-M10 × 559813745300
2.07
FM UL
65
2 1/2
76.1
3.000
2-M10 × 5510013945300
2.07
FM UL
80
3
88.9
3.500
2-M10 × 5511416045300
2.07
FM UL
100
4
114.3
4.500
2-M12 × 6514719350300
2.07
FM UL
125
5
141.3
5.563
2-M12 × 7517022250300
2.07
FM UL
125
5
139.7
5.500
2-M12 × 7517022250300
2.07
FM UL
150
6
165.1
6.500
2-M12 × 7520324850300
2.07
FM UL
150
6
168.3
6.625
2-M12 × 7520525450300
2.07
FM UL
200
8
219.1
8.625
2-M16 × 8525733058300
2.07
FM UL
250
10
273.0
10.750
2-M20 × 13032842062300
2.07
FM UL
300
12
323.9
12.750
2-M20 × 13038045463300
2.07
FM UL
+

Reducing Flexible Coupling DUKELARRSEN

- Reducing Flexible Coupling + Reducing Flexible Coupling +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD Dxd
mm/in
Bolt Size
mm
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
ØLH
50 × 40
2 × 1 1/2
60.3 × 48.3
2.375 × 1.900
2-M10 × 558512545300
2.07
FM UL
65 × 50
2 1/2 × 2
73 × 60.3
2.875 × 2.375
2-M10 × 559813745300
2.07
FM UL
65 × 50
2 1/2 × 2
76.1 × 60.3
3.000 × 2.375
2-M10 × 5510013945300
2.07
FM UL
80 × 25
3 × 1
88.9 × 33.7
3.500 × 1.327
2-M10 × 5511416045300
2.07
FM UL
80 × 50
3 × 2
88.9 × 60.3
3.500 × 2.375
2-M10 × 5511416045300
2.07
FM UL
80 × 65
3 × 2 1/2
88.9 × 76.1
3.500 × 3.000
2-M10 × 5511416045300
2.07
FM UL
100 × 25
4 × 1
114.3 × 33.7
4.500 × 1.327
2-M12 × 6514719350300
2.07
FM UL
100 × 50
4 × 2
114.3 × 60.3
4.500 × 2.375
2-M12 × 6514719350300
2.07
FM UL
100 × 65
4 × 2 1/2
114.3 × 73.0
4.500 × 3.000
2-M12 × 6514719350300
2.07
FM UL
100 × 80
4 × 3
114.3 × 88.9
4.500 × 3.500
2-M12 × 6514719350300
2.07
FM UL
150 × 80
6 × 3
168.3 × 88.9
6.625 × 3.500
2-M12 × 7520525450300
2.07
FM UL
150 × 100
6 × 4
168.3 × 114.3
6.625 × 4.500
2-M12 × 7520525450300
2.07
FM UL
+
@@ -206,70 +314,513 @@ import Footer from '@/components/common/Footer.astro';

หน้าจาน PN16 Grooved DUKELARRSEN

- หน้าจาน PN16 -
- -
-

หน้าจาน ANSI 150 Grooved DUKELARRSEN

- หน้าจาน ANSI 150 -
- -
-

ข้องอ 22.5° / 45° / 90° Grooved

-
- ข้องอ 22.5 - ข้องอ 45 - ข้องอ 90 + หน้าจาน PN16 +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Bolt Size
mm
L
mm
D
mm
Y
mm
Z
mm
n-Ø
mm
Working Pressure
Psi/Mpa
Certificate
50 / 260.3 / 2.3752-M10X70220165125234-Ø18300 / 2.07FM UL
65 / 2 1/273.0 / 2.8752-M10X70235185145234-Ø18300 / 2.07FM UL
80 / 388.9 / 3.5002-M10X70255195160238-Ø18300 / 2.07FM UL
100 / 4114.3 / 4.5002-M12X70279224180238-Ø18300 / 2.07FM UL
150 / 6168.3 / 6.6252-M12X70346280240248-Ø22300 / 2.07FM UL
200 / 8219.1 / 8.6252-M12X804143402952812-Ø26300 / 2.07FM UL
250 / 10273.0 / 10.7502-M12X804804053553012-Ø26300 / 2.07FM UL
300 / 12323.9 / 12.7502-M12X805304604103212-Ø26300 / 2.07FM UL
-

ข้อลดกลม Grooved DUKELARRSEN

-
- ข้อลดกลม 1 - ข้อลดกลม 2 +

หน้าจาน ANSI 150 Grooved DUKELARRSEN

+ หน้าจาน ANSI 150 +
+ + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Bolt Size
mm
L
mm
D
mm
Y
mm
Z
mm
n-ØWorking Pressure
Psi/Mpa
Certificate
50 / 260.3 / 2.3752-M10X70220165121234-Ø19300 / 2.07FM UL
65 / 2 1/273.0 / 2.8752-M10X70235185140234-Ø19300 / 2.07FM UL
80 / 388.9 / 3.5002-M12X70255200152234-Ø19300 / 2.07FM UL
100 / 4114.3 / 4.5002-M12X70279228191238-Ø19300 / 2.07FM UL
150 / 6168.3 / 6.6252-M16X100346285241248-Ø23300 / 2.07FM UL
200 / 8219.1 / 8.6252-M16X100414340299288-Ø23300 / 2.07FM UL
+
+
+ +
+

ข้องอ 22.5° Grooved

+ ข้องอ 22.5 +
+ + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
40 (1 1/2)48.3 (1.9)44300 (2.07)FM UL
50 (2)60.3 (2.375)51300 (2.07)FM UL
65 (2 1/2)73.0 (2.875)51300 (2.07)FM UL
80 (3)88.9 (3.500)57300 (2.07)FM UL
100 (4)114.3 (4.500)73300 (2.07)FM UL
150 (6)168.3 (6.625)79300 (2.07)FM UL
200 (8)219.1 (8.625)98300 (2.07)FM UL
250 (10)273.0 (10.75)111300 (2.07)FM UL
+
+
+ +
+

ข้องอ 45° Grooved

+ ข้องอ 45 +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
25 / 133.7 / 1.32744300 / 2.07FM UL
32 / 1 1/442.4 / 1.66944300 / 2.07FM UL
40 / 1 1/248.3 / 1.90044300 / 2.07FM UL
50 / 260.3 / 2.37551300 / 2.07FM UL
65 / 2 1/273.0 / 2.87557300 / 2.07FM UL
80 / 388.9 / 3.50064300 / 2.07FM UL
100 / 4114.3 / 4.50076300 / 2.07FM UL
125 / 5139.7 / 5.50083300 / 2.07FM UL
150 / 6168.3 / 6.62589300 / 2.07FM UL
200 / 8219.1 / 8.625108300 / 2.07FM UL
250 / 10273.0 / 10.750121300 / 2.07FM UL
300 / 12323.9 / 12.750133300 / 2.07FM UL
+
+
+ +
+

ข้องอ 90° Grooved

+ ข้องอ 90 +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
25 / 133.7 / 1.32757300 / 2.07FM UL
32 / 1 1/442.4 / 1.66960300 / 2.07FM UL
40 / 1 1/248.3 / 1.90060300 / 2.07FM UL
50 / 260.3 / 2.37570300 / 2.07FM UL
65 / 2 1/273.0 / 2.87576300 / 2.07FM UL
80 / 388.9 / 3.50076300 / 2.07FM UL
100 / 4114.3 / 4.500102300 / 2.07FM UL
125 / 5141.3 / 5.563122300 / 2.07FM UL
150 / 6168.3 / 6.625140300 / 2.07FM UL
200 / 8219.1 / 8.625175300 / 2.07FM UL
250 / 10273.0 / 10.750215300 / 2.07FM UL
300 / 12323.9 / 12.750245300 / 2.07FM UL
+
+
+ +
+

ข้อลดกลม Grooved DUKELARRSEN (1)

+ ข้อลดกลม 1 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
32 x 25 (1 1/4 x 1)42.4 x 33.764300 / 2.07FM UL
40 x 25 (1 1/2 x 1)48.3 x 33.764300 / 2.07FM UL
50 x 25 (2 x 1)60.3 x 33.764300 / 2.07FM UL
50 x 40 (2 x 1 1/2)60.3 x 48.364300 / 2.07FM UL
65 x 25 (2 1/2 x 1)73.0 x 33.764300 / 2.07FM UL
65 x 40 (2 1/2 x 1 1/2)73.0 x 48.364300 / 2.07FM UL
65 x 50 (2 1/2 x 2)73.0 x 60.364300 / 2.07FM UL
80 x 25 (3 x 1)88.9 x 33.764300 / 2.07FM UL
80 x 40 (3 x 1 1/2)88.9 x 48.364300 / 2.07FM UL
80 x 50 (3 x 2)88.9 x 60.364300 / 2.07FM UL
80 x 65 (3 x 2 1/2)88.9 x 73.064300 / 2.07FM UL
100 x 40 (4 x 1 1/2)114.3 x 48.376300 / 2.07FM UL
100 x 50 (4 x 2)114.3 x 60.376300 / 2.07FM UL
100 x 65 (4 x 2 1/2)114.3 x 73.076300 / 2.07FM UL
100 x 80 (4 x 3)114.3 x 88.976300 / 2.07FM UL
+
+
+ +
+

ข้อลดกลม Grooved DUKELARRSEN (2)

+ ข้อลดกลม 2 +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
125 x 50 (5 x 2)139.7 x 60.389300 / 2.07FM UL
125 x 80 (5 x 3)139.7 x 88.989300 / 2.07FM UL
125 x 100 (5 x 4)139.7 x 108.089300 / 2.07FM UL
150 x 50 (6 x 2)168.3 x 60.3102300 / 2.07FM UL
150 x 65 (6 x 2 1/2)168.3 x 73.0102300 / 2.07FM UL
150 x 80 (6 x 3)168.3 x 88.9102300 / 2.07FM UL
150 x 100 (6 x 4)168.3 x 114.3102300 / 2.07FM UL
150 x 125 (6 x 5)168.3 x 139.7102300 / 2.07FM UL
200 x 65 (8 x 2 1/2)219.1 x 73.0127300 / 2.07FM UL
200 x 80 (8 x 3)219.1 x 88.9127300 / 2.07FM UL
200 x 100 (8 x 4)219.1 x 114.3127300 / 2.07FM UL
200 x 125 (8 x 5)219.1 x 139.7127300 / 2.07FM UL
200 x 150 (8 x 6)219.1 x 168.3127300 / 2.07FM UL

ข้อลดเบี้ยว Grooved DUKELARRSEN

- ข้อลดเบี้ยว + ข้อลดเบี้ยว +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
80 x 50 (3 x 2)88.9 x 60.364300 / 2.07FM UL
100 x 50 (4 x 2)114.3 x 60.376300 / 2.07FM UL
100 x 65 (4 x 2 1/2)114.3 x 76.176300 / 2.07FM UL
100 x 80 (4 x 3)114.3 x 88.976300 / 2.07FM UL
125 x 65 (5 x 2 1/2)139.7 x 73.089300 / 2.07FM UL
125 x 80 (5 x 3)139.7 x 88.989300 / 2.07FM UL
125 x 100 (5 x 4)139.7 x 114.389300 / 2.07FM UL
150 x 65 (6 x 2 1/2)165.1 x 76.1102300 / 2.07FM UL
150 x 80 (6 x 3)168.3 x 88.9102300 / 2.07FM UL
150 x 100 (6 x 4)168.3 x 114.3102300 / 2.07FM UL
200 x 80 (8 x 3)219.1 x 88.9127300 / 2.07FM UL
200 x 100 (8 x 4)219.1 x 114.3127300 / 2.07FM UL
200 x 125 (8 x 5)219.1 x 139.7127300 / 2.07FM UL
200 x 150 (8 x 6)219.1 x 168.3127300 / 2.07FM UL
250 x 150 (10 x 6)273.0 x 165.1152300 / 2.07FM UL
250 x 200 (10 x 8)273 x 219.1152300 / 2.07FM UL
+

สามทาง Grooved DUKELARRSEN

- สามทาง + สามทาง +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
25 / 133.7 / 1.32757300 / 2.07FM UL
32 / 1 1/442.4 / 1.66960300 / 2.07FM UL
40 / 1 1/248.3 / 1.90060300 / 2.07FM UL
50 / 260.3 / 2.37570300 / 2.07FM UL
65 / 2 1/273.0 / 2.87576300 / 2.07FM UL
80 / 388.9 / 3.50086300 / 2.07FM UL
100 / 4114.3 / 4.500102300 / 2.07FM UL
125 / 5139.7 / 5.500122300 / 2.07FM UL
150 / 6168.3 / 6.625140300 / 2.07FM UL
200 / 8219.1 / 8.625175300 / 2.07FM UL
250 / 10273.0 / 10.750215300 / 2.07FM UL
300 / 12323.9 / 12.750245300 / 2.07FM UL
+
-

สามทางลด Grooved DUKELARRSEN

-
- สามทางลด 1 - สามทางลด 2 +

สามทางลด Grooved DUKELARRSEN (1)

+ สามทางลด 1 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
50 × 25 (2 × 1)60.3 × 33.770300 / 2.07FM UL
50 × 40 (2 × 1 1/2)60.3 × 48.370300 / 2.07FM UL
65 × 25 (2 1/2 × 1)73.0 × 33.776300 / 2.07FM UL
65 × 40 (2 1/2 × 1 1/2)73.0 × 48.376300 / 2.07FM UL
65 × 50 (2 1/2 × 2)73.0 × 60.376300 / 2.07FM UL
80 × 25 (3 × 1)88.9 × 33.786300 / 2.07FM UL
80 × 40 (3 × 1 1/2)88.9 × 48.386300 / 2.07FM UL
80 × 50 (3 × 2)88.9 × 60.386300 / 2.07FM UL
80 × 65 (3 × 2 1/2)88.9 × 73.086300 / 2.07FM UL
100 × 50 (4 × 2)114.3 × 60.3102300 / 2.07FM UL
100 × 65 (4 × 2 1/2)114.3 × 73.0102300 / 2.07FM UL
100 × 80 (4 × 3)114.3 × 88.9102300 / 2.07FM UL
125 × 50 (5 × 2)139.7 × 60.3122300 / 2.07FM UL
125 × 65 (5 × 2 1/2)139.7 × 76.1122300 / 2.07FM UL
125 × 80 (5 × 3)139.7 × 88.9122300 / 2.07FM UL
+
+
+ +
+

สามทางลด Grooved DUKELARRSEN (2)

+ สามทางลด 2 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
125 x 100 (5 x 4)139.7 x 114.3122300 / 2.07FM UL
150 x 50 (6 x 2)168.3 x 60.3140300 / 2.07FM UL
150 x 65 (6 x 2 1/2)168.3 x 73.0140300 / 2.07FM UL
150 x 80 (6 x 3)168.3 x 88.9140300 / 2.07FM UL
150 x 100 (6 x 4)168.3 x 114.3140300 / 2.07FM UL
150 x 125 (6 x 5)165.1 x 139.7140300 / 2.07FM UL
200 x 50 (8 x 2)219.1 x 60.3175300 / 2.07FM UL
200 x 65 (8 x 2 1/2)219.1 x 73.0175300 / 2.07FM UL
200 x 80 (8 x 3)219.1 x 88.9175300 / 2.07FM UL
200 x 100 (8 x 4)219.1 x 114.3175300 / 2.07FM UL
200 x 125 (8 x 5)219.1 x 139.7175300 / 2.07FM UL
200 x 150 (8 x 6)219.1 x 168.3175300 / 2.07FM UL
250 x 150 (10 x 6)273.0 x 168.3215300 / 2.07FM UL
250 x 200 (10 x 8)273.0 x 219.1215300 / 2.07FM UL
300 x 150 (12 x 6)323.9 x 168.3245300 / 2.07FM UL
300 x 250 (12 x 10)323.9 x 273.0245300 / 2.07FM UL

สามทางลดเกลียวใน Grooved DUKELARRSEN

- สามทางลดเกลียวใน + สามทางลดเกลียวใน +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
50 × 25 / 2 × 160.3 × 33.770300 / 2.07FM UL
50 × 32 / 2 × 1 1/460.3 × 42.470300 / 2.07FM UL
50 × 40 / 2 × 1 1/260.3 × 48.370300 / 2.07FM UL
65 × 25 / 2 1/2 × 173.0 × 33.776300 / 2.07FM UL
65 × 25 / 2 1/2 × 176.1 × 33.776300 / 2.07FM UL
65 × 32 / 2 1/2 × 1 1/473.0 × 42.476300 / 2.07FM UL
65 × 40 / 2 1/2 × 1 1/273.0 × 48.376300 / 2.07FM UL
65 × 50 / 2 1/2 × 273.0 × 60.376300 / 2.07FM UL
80 × 25 / 3 × 188.9 × 33.786300 / 2.07FM UL
80 × 32 / 3 × 1 1/488.9 × 42.486300 / 2.07FM UL
80 × 40 / 3 × 1 1/288.9 × 48.386300 / 2.07FM UL
80 × 50 / 3 × 288.9 × 60.386300 / 2.07FM UL
80 × 65 / 3 × 2 1/288.9 × 76.186300 / 2.07FM UL
100 × 25 / 4 × 1114.3 × 33.7102300 / 2.07FM UL
100 × 32 / 4 × 1 1/4114.3 × 42.4102300 / 2.07FM UL
100 × 40 / 4 × 1 1/2114.3 × 48.3102300 / 2.07FM UL
100 × 50 / 4 × 2114.3 × 60.3102300 / 2.07FM UL
100 × 65 / 4 × 2 1/2114.3 × 73.0102300 / 2.07FM UL
100 × 80 / 4 × 3114.3 × 88.9102300 / 2.07FM UL
125 × 25 / 5 × 1139.7 × 33.7122300 / 2.07FM UL
125 × 32 / 5 × 1 1/4139.7 × 42.4122300 / 2.07FM UL
125 × 40 / 5 × 1 1/2139.7 × 48.3122300 / 2.07FM UL
+
-

สี่ทาง และ สี่ทางลด Grooved

-
- สี่ทาง - สี่ทางลด +

สี่ทาง Grooved

+ สี่ทาง +
+ + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
50 / 260.3 / 2.37583300 / 2.07FM UL
65 / 2 1/273.0 / 2.87595300 / 2.07FM UL
80 / 388.9 / 3.500108300 / 2.07FM UL
100 / 4114.3 / 4.500127300 / 2.07FM UL
150 / 6168.3 / 6.625165300 / 2.07FM UL
200 / 8219.1 / 8.625197300 / 2.07FM UL
+
+
+ +
+

สี่ทางลด Grooved

+ สี่ทางลด +
+ + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
150 × 50 (6 × 2)165.1 × 60.3140300 / 2.07FM UL
150 × 65 (6 × 2 1/2)165.1 × 76.1140300 / 2.07FM UL
150 × 80 (6 × 3)165.1 × 88.9140300 / 2.07FM UL
150 × 100 (6 × 4)165.1 × 114.3140300 / 2.07FM UL
200 × 100 (8 × 4)219.1 × 114.3175300 / 2.07FM UL

ฝาครอบ DUKELARRSEN

- ฝาครอบ + ฝาครอบ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
25
1
33.7
1.327
23.8300
2.07
FM UL
32
1 1/4
42.4
1.669
23.8300
2.07
FM UL
40
1 1/2
48.3
1.900
23.8300
2.07
FM UL
50
2
60.3
2.375
23.8300
2.07
FM UL
65
2 1/2
73
2.875
23.8300
2.07
FM UL
80
3
88.9
3.500
23.8300
2.07
FM UL
100
4
114.3
4.500
25.4300
2.07
FM UL
125
5
139.7
5.500
25.4300
2.07
FM UL
150
6
168.3
6.625
25.4300
2.07
FM UL
200
8
219.1
8.625
32300
2.07
FM UL
250
10
273.0
10.750
32300
2.07
FM UL
300
12
323.9
12.750
32300
2.07
FM UL
+

Cap with Eccentric Hole

- Cap with Eccentric Hole + Cap with Eccentric Hole +
+ + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions L
mm
Working Pressure
Psi/Mpa
Certificate
80 × 25 (3 × 1)88.9 × 33.725300 / 2.07FM UL
100 × 25 (4 × 1)114.3 × 33.725300 / 2.07FM UL
150 × 25 (6 × 1)165.1 × 33.725300 / 2.07FM UL
+
@@ -284,25 +835,228 @@ import Footer from '@/components/common/Footer.astro';
-

รัดแยกสามทาง Grooved DUKELARRSEN

-
- รัดแยกสามทาง 1 - รัดแยกสามทาง 2 +

รัดแยกสามทาง Grooved DUKELARRSEN (1)

+ รัดแยกสามทาง 1 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
HoleØLAH
50 x 32
2 x 1 1/4
60.3 x 42.446751207069300 / 2.07FM UL
50 x 40
2 x 1 1/2
60.3 x 48.346751207068300 / 2.07FM UL
65 x 25
2 1/2 x 1
73.0 x 33.738931377877300 / 2.07FM UL
65 x 32
2 1/2 x 1 1/4
73.0 x 42.446931377883300 / 2.07FM UL
65 x 40
2 1/2 x 1 1/2
73.0 x 48.351931377883300 / 2.07FM UL
80 x 25
3 x 1
88.9 x 33.7381141528377300 / 2.07FM UL
80 x 32
3 x 1 1/4
88.9 x 42.4461141528583300 / 2.07FM UL
80 x 40
3 x 1 1/2
88.9 x 48.3511141528593300 / 2.07FM UL
80 x 50
3 x 2
88.9 x 60.3641141528599300 / 2.07FM UL
100 x 25
4 x 1
114.3 x 33.7381401809777300 / 2.07FM UL
100 x 50
4 x 2
114.3 x 60.3641401809999300 / 2.07FM UL
100 x 65
4 x 2 1/2
114.3 x 73.07014018099122300 / 2.07FM UL
100 x 80
4 x 3
114.3 x 88.989140180102129300 / 2.07FM UL
125 x 50
5 x 2
139.7 x 60.364168220112100300 / 2.07FM UL
125 x 80
5 x 3
139.7 x 88.989168220113134300 / 2.07FM UL
150 x 50
6 x 2
168.3 x 60.36419824813099300 / 2.07FM UL
-

รัดแยกสามทางเกลียวใน Threaded Grooved DUKELARRSEN

-
- รัดแยกเกลียวใน 1 - รัดแยกเกลียวใน 2 - รัดแยกเกลียวใน 3 +

รัดแยกสามทาง Grooved DUKELARRSEN (2)

+ รัดแยกสามทาง 2 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
HoleØLAH
150 x 65 (6 x 2 1/2)168.3 x 73.070198248131122300 / 2.07FM UL
150 x 65 (6 x 2 1/2)165.1 x 73.070194248126122300 / 2.07FM UL
150 x 80 (6 x 3)165.1 x 88.989194248125139300 / 2.07FM UL
150 x 80 (6 x 3)168.3 x 88.989198248128136300 / 2.07FM UL
150 x 100 (6 x 4)168.3 x 114.3114198248133157300 / 2.07FM UL
150 x 100 (6 x 4)165.1 x 114.3114194248125159300 / 2.07FM UL
200 x 50 (8 x 2)219.1 x 60.364250311146100300 / 2.07FM UL
200 x 65 (8 x 2 1/2)219.1 x 73.070250311152130300 / 2.07FM UL
200 x 80 (8 x 3)219.1 x 88.989250311152137300 / 2.07FM UL
200 x 100 (8 x 4)219.1 x 114.3114250311153162300 / 2.07FM UL
+
+
+ +
+

รัดแยกสามทางเกลียวใน Threaded Grooved DUKELARRSEN (1)

+ รัดแยกเกลียวใน 1 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
HoleØLAH
50 x 15 (2 x 1/2)60.3 x 21.338751205054300 / 2.07FM UL
50 x 20 (2 x 3/4)60.3 x 26.738751205054300 / 2.07FM UL
50 x 25 (2 x 1)60.3 x 33.738751205769300 / 2.07FM UL
50 x 32 (2 x 1 1/4)60.3 x 42.446751205769300 / 2.07FM UL
50 x 40 (2 x 1 1/2)60.3 x 48.346751206168300 / 2.07FM UL
65 x 15 (2 1/2 x 1/2)73.0 x 21.338931395854300 / 2.07FM UL
65 x 25 (2 1/2 x 1)73.0 x 33.738931396177300 / 2.07FM UL
65 x 25 (2 1/2 x 1)76.1 x 33.7381021446777300 / 2.07FM UL
65 x 32 (2 1/2 x 1 1/4)73.0 x 42.446931396183300 / 2.07FM UL
65 x 40 (2 1/2 x 1 1/2)73.0 x 48.351931396183300 / 2.07FM UL
+
+
+ +
+

รัดแยกสามทางเกลียวใน Threaded Grooved DUKELARRSEN (2)

+ รัดแยกเกลียวใน 2 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
HoleØLAH
65 x 50 (2 1/2 x 2)73.0 x 60.351931396683300 / 2.07FM UL
80 x 15 (3 x 1/2)88.9 x 21.3381141555959300 / 2.07FM UL
80 x 25 (3 x 1)88.9 x 33.7381141557477300 / 2.07FM UL
80 x 32 (3 x 1 1/4)88.9 x 42.4461141557383300 / 2.07FM UL
80 x 40 (3 x 1 1/2)88.9 x 48.3511141557393300 / 2.07FM UL
80 x 50 (3 x 2)88.9 x 60.3641141557899300 / 2.07FM UL
100 x 25 (4 x 1)114.3 x 33.7381401818377300 / 2.07FM UL
100 x 50 (4 x 2)114.3 x 60.36414018193100300 / 2.07FM UL
100 x 65 (4 x 2 1/2)114.3 x 73.07014018193122300 / 2.07FM UL
100 x 80 (4 x 3)114.3 x 88.98914018193136300 / 2.07FM UL
150 x 50 (6 x 2)168.3 x 60.36419824812099300 / 2.07FM UL
150 x 80 (6 x 3)168.3 x 88.989198248128136300 / 2.07FM UL
+
+
+ +
+

รัดแยกสามทางเกลียวใน Threaded Grooved DUKELARRSEN (3)

+ รัดแยกเกลียวใน 3 +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Dimensions (mm)Working Pressure
Psi/Mpa
Certificate
HoleØLAH
150 × 100 (6 × 4)168.3 × 114.3114198248128136300 / 2.07FM UL
200 × 25 (8 × 1)219.1 × 33.73825031114677300 / 2.07FM UL
200 × 32 (8 × 1 1/4)219.1 × 42.44625031114683300 / 2.07FM UL
200 × 40 (8 × 1 1/2)219.1 × 48.35125031114694300 / 2.07FM UL
200 × 50 (8 × 2)219.1 × 60.364250311146100300 / 2.07FM UL
200 × 65 (8 × 2 1/2)219.1 × 76.170250311146130300 / 2.07FM UL
200 × 80 (8 × 3)219.1 × 88.989250311152137300 / 2.07FM UL
200 × 100 (8 × 4)219.1 × 114.3114250311153162300 / 2.07FM UL

รัดแยกสาม U-Bolt Grooved DUKELARRSEN

- รัดแยก U-Bolt + รัดแยก U-Bolt +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Nominal Size
mm/in
Pipe OD
mm/in
Bolt Size
mm
Hole
mm
L
mm
A
mm
H
mm
Working Pressure
Psi/Mpa
Certificate
25 × 15 (1 × 1/2)33.7 × 21.3M10×7024764943300 / 2.07FM UL
25 × 20 (1 × 3/4)33.7 × 26.9M10×7024845843300 / 2.07FM UL
32 × 15 (1 1/4 × 1/2)42.4 × 21.3M10×7830984556300 / 2.07FM UL
32 × 25 (1 1/4 × 1)42.4 × 33.7M10×7830985456300 / 2.07FM UL
40 × 15 (1 1/2 × 1/2)48.3 × 21.3M10×78301064859300 / 2.07FM UL
40 × 25 (1 1/2 × 1)48.3 × 33.7M10×78301065859300 / 2.07FM UL
50 × 15 (2 × 1/2)60.3 × 21.3M10×92301205459300 / 2.07FM UL
50 × 25 (2 × 1)60.3 × 33.7M10×92301206659300 / 2.07FM UL
65 × 15 (2 1/2 × 1/2)73.0 × 21.3M10×108301396159300 / 2.07FM UL
65 × 25 (2 1/2 × 1)73.0 × 33.7M10×108301397059300 / 2.07FM UL
+
diff --git a/src/pages/index.astro b/src/pages/index.astro index 88de69e..2b6a77a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -15,7 +15,6 @@ const categories = [ { name: 'กรู๊ฟท่อ', slug: '/groove-coupling', image: '/images/products-cropped/mech_000C.jpg' }, { name: 'Pipe Coupling', slug: '/pipe-coupling', image: '/images/pipe-coupling/BG-SMC02.png' }, { name: 'DUKELARRSEN', slug: '/dukelarrsen', image: '/images/dukelarrsen/dukelarrsen-43.jpg' }, - { name: 'แฮงเกอร์ แคล้ม โบลท์', slug: '/แฮงเกอร์-แคล้ม-โบลท์-แหว', image: '/images/products-cropped/Hanger-Clamp-Bolt_000.jpg' }, { name: 'วาล์ว', slug: '/วาล์ว-valve', image: '/images/products-cropped/valve_000C.jpg' }, { name: 'DURGO วาล์วเติมอากาศ', slug: '/durgo-avvs', image: '/images/products-cropped/durgo_000C.jpg' }, { name: 'ปั๊มน้ำ', slug: '/water-pump', image: '/images/products-cropped/water-pump_000C.jpg' }, diff --git a/src/pages/pipe/index.astro b/src/pages/pipe/index.astro index 4ad40fe..fa7c195 100644 --- a/src/pages/pipe/index.astro +++ b/src/pages/pipe/index.astro @@ -67,7 +67,87 @@ import Footer from '@/components/common/Footer.astro';
-
+ +
+ +
+ +

สนใจสินค้าของเรา?

diff --git a/src/pages/pp-r-pp-rct-poloplast/index.astro b/src/pages/pp-r-pp-rct-poloplast/index.astro index 44caf39..7485aa3 100644 --- a/src/pages/pp-r-pp-rct-poloplast/index.astro +++ b/src/pages/pp-r-pp-rct-poloplast/index.astro @@ -67,6 +67,117 @@ import Footer from '@/components/common/Footer.astro';

+ +
+
+
+

รายละเอียดสินค้า

+
+

+ PP-R / PP-RCT POLOPLAST ทางเลือกที่ดีกว่า ด้วยประสบการณ์ในการผลิตที่ยาวนานกว่า 30 ปี จึงเข้าใจและเชี่ยวชาญด้านระบบท่อน้ำพีพี-อาร์เป็นอย่างดี นำมาสู่การออกแบบและพัฒนาผลิตภัณฑ์ตามหลักวิศวกรรมศาสตร์ เพื่อแก้ไขปัญหาจากการใช้งานจริง +

+

+ ท่อและข้อต่อผลิตจากประเทศเยอรมนี ติดตั้งง่าย ประสานเป็นเนื้อเดียวกันได้อย่างสมบูรณ์ ผ่านการทดสอบมาตรฐานระดับโลกจาก DVGW, SKZ และ ICC-ES +

+

+ เหมาะสำหรับใช้เป็นท่อน้ำดื่มและท่ออื่นๆ ได้อย่างดี รับประกันอายุการใช้งาน 10 ปี ผลิตตามมาตรฐาน DIN 8077/8078 +

+ +

เทคโนโลยี MULTI LAYER รุ่น ML5

+
    +
  • PP-R External Layer: เม็ดพลาสติกคุณภาพสูง ติดตั้งง่าย เชื่อมเป็นเนื้อเดียวกันได้อย่างสมบูรณ์
  • +
  • HPCE Second Layer: ชั้นไฟเบอร์พิเศษที่คิดค้นโดย POLOPLAST อัตราการยืด (Linear Expansion) ที่น้อยที่สุดเพียง 0.038 mm/mK ทนต่อแรงกระแทกสูงเป็นพิเศษ
  • +
  • PP-RCT Central Layer: ยืดอายุการใช้งาน ลดการยืดหดขยายตัวถึง 5 เท่า รองรับอุณหภูมิได้สูงถึง 95°C
  • +
  • HPCE Second Inner Layer: เพิ่มความต้านทานและทนต่อแรงกระแทก
  • +
  • PP-RCT Inner Layer: แข็งแรง ทนต่อแรงดัน พื้นผิวเรียบ ไม่เกิดตะกรัน
  • +
+
+
+
+
+ + +
+
+

ประเภทท่อ PP-R / PP-RCT

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ประเภทSDR / Sอุณหภูมิ (°C)แรงดัน (บาร์)อายุการใช้งาน
PP-R PIPE SDR 11 / S 5SDR 11 / S 53-601050 ปี
PP-R PIPE SDR 6 / S 2.5SDR 6 / S 2.53-952050 ปี
PP-RCT FIBER FASER ML 5 / SDR 7.4 / S 3.2SDR 7.4 / S 3.23-952050 ปี
PP-RCT PIPE SDR 11 / S 5SDR 11 / S 53-951650 ปี
PP-RCT PIPE SDR 7.4 / S 3.2SDR 7.4 / S 3.23-952050 ปี
+
+

* ความยาวต่อเส้น 4 เมตร

+
+
+ + +
+
+

ขั้นตอนการติดตั้ง PP-R และ PP-RCT

+
+
+
1
+

หลอม (Fusion)

+

ตัดท่อและวัดระยะกำหนดความลึกในการเชื่อม ทำความสะอาดท่อ-ข้อต่อ นำท่อ-ข้อต่อสอดเข้าที่หัวเชื่อม

+
+
+
2
+

ประกอบ (Assemble)

+

เมื่อเชื่อมท่อ-ข้อต่อตามเวลาที่กำหนด ให้ถอดท่อ-ข้อต่อออกจากหัวเชื่อม

+
+
+
3
+

ปล่อยให้เย็นตัว (Cool)

+

นำท่อ-ข้อต่อสวมเข้าด้วยกัน ห้ามบิดหรือหมุน ปล่อยให้เย็นตามระยะเวลาที่กำหนด

+
+
+
+
+

สนใจสินค้าของเรา?

diff --git a/src/pages/ฉนวนหุ้มท่อ-pipe-insulation/index.astro b/src/pages/ฉนวนหุ้มท่อ-pipe-insulation/index.astro index 6a8cb86..c5eea59 100644 --- a/src/pages/ฉนวนหุ้มท่อ-pipe-insulation/index.astro +++ b/src/pages/ฉนวนหุ้มท่อ-pipe-insulation/index.astro @@ -67,6 +67,30 @@ import Footer from '@/components/common/Footer.astro';
+
+ +
+

สนใจสินค้าของเรา?

diff --git a/src/pages/ท่อ-ppr-thai-ppr/index.astro b/src/pages/ท่อ-ppr-thai-ppr/index.astro index ac6ebf6..b24f82e 100644 --- a/src/pages/ท่อ-ppr-thai-ppr/index.astro +++ b/src/pages/ท่อ-ppr-thai-ppr/index.astro @@ -4,7 +4,7 @@ import Header from '@/components/common/Header.astro'; import Footer from '@/components/common/Footer.astro'; --- - +
@@ -13,130 +13,131 @@ import Footer from '@/components/common/Footer.astro';
- Product + ท่อ PPR ตราช้าง (SCG)
-

ท่อ PPR (Polypropylene Random Copolymer)

+

ท่อ PPR ตราช้าง (SCG)

- จำหน่ายท่อ PPR (Polypropylene Random Copolymer)คุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล + ส่งฟรี กรุงเทพมหานคร ปริมณฑล สามารถสอบถามได้ที่ช่อง Chat หรือโทรหา ติดต่อสอบถามส่วนลด ราคาเพิ่มเติม ติดต่อ Dealplustech ได้ตลอดเวลาทำการ

- - - +
- คุณภาพสูง มาตรฐานอุตสาหกรรม + ทนแรงดันได้สูงสุด 20 บาร์
- ราคาโรงงาน คุ้มค่า + ทนความร้อนได้สูงถึง 95°C
- จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล + มาตรฐาน DIN 8077/8078 จากเยอรมัน
- รับประกันสินค้า + ผลิตจากเม็ดพลาสติก PP-R 80 คุณภาพสูงจากยุโรป
-
+

รายละเอียดสินค้า

-

ท่อ PPR เป็นท่อพลาสติกคุณภาพสูงสำหรับระบบน้ำร้อนและน้ำเย็น ผลิตจากเม็ดพลาสติก PPR เกรด A จากยุโรป มีคุณสมบัติทนความร้อนได้สูงถึง 95°C เหมาะสำหรับงานระบบประปาในอาคาร โรงแรม โรงพยาบาล และโรงงานอุตสาหกรรม

+

+ ท่อ PPR ตราช้าง ผลิตจากเม็ดพลาสติก PP-R 80 (Polypropylene Random Copolymer 80) วัตถุดิบคุณภาพสูงมาตรฐานยุโรปจาก LyondellBasell สามารถทนแรงดันได้สูงสุด 20 บาร์ ทนต่ออุณหภูมิได้สูงถึง 95°C เชื่อมต่อด้วยความร้อน หลอมท่อและข้อต่อเป็นเนื้อเดียวกัน ไม่มีปัญหารั่วซึม น้ำหนักเบา และราคาคุ้มค่ากว่าเมื่อเทียบกับท่อโลหะ +

+ +

+ เหมาะสำหรับระบบประปา ระบบประปาน้ำอุ่น ระบบประปาน้ำร้อน ระบบท่อน้ำเย็นในการปรับอากาศ ระบบท่อลมร้อน เป็นต้น ทั้งในบ้าน โรงแรม โรงพยาบาล ห้างสรรพสินค้า อาคารสำนักงาน และอาคารสูง +

+ +

+ ท่อพีพีอาร์ตราช้าง เป็นท่อที่มีความแข็งแรงสูง ผลิตตามคุณภาพมาตรฐานของเยอรมัน DIN 8077 และ DIN 8078 +

+ +

คุณสมบัติเด่นของท่อ PPR ตราช้าง

-

คุณสมบัติเด่นของท่อ PPR:

    -
  • ผลิตจากเม็ดพลาสติก PPR เกรด A จากยุโรป
  • -
  • ทนความร้อนได้สูงถึง 95°C (สำหรับ PP-R CT)
  • -
  • ทนแรงดันน้ำได้สูง PN20, PN25
  • -
  • ไม่เป็นสนิม ไม่ผุกร่อน
  • -
  • ผิวภายในเรียบ ลื่น ลดการสะสมของหินปูน
  • -
  • ต่อเชื่อมด้วยความร้อน (Heat Fusion) ได้สนิท100% ไม่มีการรั่วซึม
  • -
  • อายุการใช้งานมากกว่า 50 ปี
  • -
  • ปลอดภัยสำหรับน้ำดื่ม (Food Grade)
  • -
  • ติดตั้งง่าย รวดเร็ว
  • +
  • ทนแรงดันได้สูง 20 บาร์ - ผลิตตามมาตรฐาน DIN 8077/8078 จึงสามารถทนแรงดันน้ำภายในท่อได้สูงสุด 20 บาร์
  • +
  • ทนต่ออุณหภูมิได้สูงสุดถึง 95°C - เหมาะกับการใช้เป็นท่อน้ำร้อนเพื่อการอุปโภคบริโภค
  • +
  • สะอาดไม่เป็นสนิม ปราศจากโลหะหนักและสิ่งปนเปื้อน - น้ำที่ไหลผ่านท่อ PPR ตราช้าง สะอาดปลอดภัย ไม่เป็นสนิม มีสีหรือกลิ่นปกติ มีคุณสมบัติทึบแสง ไม่เกิดตะไคร่น้ำภายในท่อ
  • +
  • ประหยัดพลังงาน รักษาอุณหภูมิของน้ำได้ดีกว่าท่อโลหะ - ช่วยลดการสูญเสียความร้อนระหว่างที่น้ำร้อนไหลผ่านภายในท่อ
  • +
  • อายุการใช้งานยาวนาน - ทนทานต่อการกัดกร่อนของสารเคมี ไม่ผุกร่อนหรือเป็นสนิม
  • +
  • น้ำหนักเบา และราคาถูกกว่า เมื่อเทียบกับท่อทองแดง
  • +
  • ติดตั้งง่าย เชื่อมต่อเป็นเนื้อเดียวกัน ด้วยความร้อน ไม่รั่วซึม
-

การเชื่อมต่อ:

-
    -
  • ใช้เครื่องเชื่อมความร้อน (Heat Fusion Welding)
  • -
  • อุณหภูมิการเชื่อม: 260°C
  • -
  • เวลาการเชื่อม: 5-30 วินาที (ขึ้นกับขนาดท่อ)
  • -
+

ข้อต่อ PPR ตราช้าง

-

ข้อควรระวัง:

-
    -
  • ไม่ควรใช้กับน้ำร้อนเกิน 95°C
  • -
  • ควรหลีกเลี่ยงการกระแทกแรงๆ ระหว่างการติดตั้ง
  • -
  • ควรเก็บให้พ้นจากแสงแดดโดยตรง
  • -
- -

มาตรฐาน: DIN 8077/8078, ISO 15874

-

ขนาด: 20 มม. - 315 มม.

- -

การใช้งาน:

-
    -
  • งานระบบประปาในอาคาร
  • -
  • งานระบบน้ำร้อน
  • -
  • งานระบบน้ำดื่ม
  • -
  • งานโรงแรม โรงพยาบาล
  • -
  • งานโรงงานอาหารและเครื่องดื่ม
  • -
+

+ ข้อต่อพีพีอาร์ตราช้าง ผลิตตามมาตรฐาน DIN16962-5 สามารถติดตั้งร่วมกับท่อประเภทอื่นๆ ได้ตามลักษณะงาน เนื่องจากมีข้อต่อประเภทเกลียวชนิดต่างๆ มากมายจึงทำให้สะดวก และไม่มีปัญหาในการใช้งานร่วมกัน รวมทั้งเกลียวเป็นชนิดทำจากทองเหลืองและชนิดทำจากทองเหลืองชุบนิเกิลทำให้ไม่เป็นสนิม อีกทั้งข้อต่อพีพีอาร์สามารถทนต่อแรงดันได้สูงสุด 20 บาร์ +

-
+ +
-

มาตรฐานท่อ PPR (PPR Pipe Standards)

+

มาตรฐานท่อ PPR

+
- + + + + - + + + + - + + + + - + + + +
ประเภทมาตรฐานแรงดัน (bar)อุณหภูมิ (°C)ประเภทมาตรฐานแรงดัน (bar)อุณหภูมิ (°C)
PPR PN20DIN 8077/782060PPR PN20DIN 8077/782060
PPR PN25DIN 8077/782570PPR PN25DIN 8077/782570
PP-R CTDIN 8077/782595PP-R CTDIN 8077/782595
@@ -144,18 +145,1272 @@ import Footer from '@/components/common/Footer.astro';
- +
-

รูปภาพสินค้าเพิ่มเติม

+

รูปภาพสินค้า

- ท่อ PPR (Polypropylene Random Copolymer)ท่อ PPR (Polypropylene Random Copolymer)ท่อ PPR (Polypropylene Random Copolymer)ท่อ PPR (Polypropylene Random Copolymer)ท่อ PPR (Polypropylene Random Copolymer)ท่อ PPR (Polypropylene Random Copolymer) + ท่อ PPR ตราช้าง + ท่อ PPR ตราช้าง
- -
+ +
+
+

ตารางราคาสินค้า

+

ราคาท่อ PPR และข้อต่อ PPR ตราช้าง (SCG) สอบถามราคาล่าสุดได้ที่ Line หรือโทรศัพท์

+
+
+

ราคาท่อ PPR ตราช้าง (SCG) — แบบ SDR11 PN10 Economy Class (3-60°C)

+

* ท่อขนาด D20 (1/2") เพิ่มความหนาจาก 1.9 มม. (SDR11) เป็น 2.3 มม. (SDR9) ป้องกันปัญหาเชื่อมแล้วอุดตัน

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาด (มม.)ขนาด (นิ้ว)SDRPNความหนา (มม.)ราคา (บาท)
201/2"912.52.3140
253/4"11102.3184
321"11102.9304
401 1/4"11103.7452
501 1/2"11104.6720
632"11105.81,148
752 1/2"11106.81,608
903"11108.22,248
1104"111010.03,336
1255"111011.45,268
1606"111014.69,800
2008"111018.218,456
25010"111022.723,388
31512"111028.640,800
+
+ +

ราคาท่อ PPR ตราช้าง (SCG) — แบบ SDR6 PN20 High Pressure Class (3-95°C)

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาด (มม.)ขนาด (นิ้ว)SDRPNความหนา (มม.)ราคา (บาท)
201/2"6203.4216
253/4"6204.2332
321"6205.4536
401 1/4"6206.7836
501 1/2"6208.31,300
632"62010.52,044
752 1/2"62012.52,352
903"62015.03,508
1104"62018.34,996
1606"7.41621.910,800
+
+ +

ราคาท่อ PPR ตราช้าง (SCG) — แบบ SDR6 PN20 Durable Class MF ไฟเบอร์ (3-95°C)

+

* แบบ MF Fiber ผสมไฟเบอร์หนาพิเศษ รับแรงดันได้ 20 บาร์ ลดการยืด/ขยายตัว 3 เท่า

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาด (มม.)ขนาด (นิ้ว)SDRPNความหนา (มม.)ราคา (บาท)
201/2"6203.4296
253/4"6204.2452
321"6205.4736
401 1/4"6206.71,140
501 1/2"6208.31,788
632"62010.52,804
752 1/2"62012.53,972
903"62015.05,716
1104"62018.38,528
1606"7.420 MF21.913,884
+
+
+
+

ราคาข้อต่อตรง

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
20 มม.11
25 มม.15
32 มม.20
40 มม.33
50 มม.54
63 มม.93
75 มม.213
90 มม.358
110 มม.577
+
+
+
+

ราคา ท่อ PPR ข้องอ 45°

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
20 มม.13
25 มม.20
32 มม.37
40 มม.60
50 มม.112
63 มม.188
75 มม.249
90 มม.406
110 มม.622
+
+
+
+

ราคา ท่อ PPR ข้องอ 90°

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
20 มม.15
25 มม.22
32 มม.33
40 มม.55
50 มม.102
63 มม.169
75 มม.322
90 มม.572
110 มม.622
+
+
+
+

ราคา ท่อ PPR สามทาง

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
20 มม.19
25 มม.28
32 มม.44
40 มม.82
50 มม.115
63 มม.218
75 มม.398
90 มม.645
110 มม.845
+
+
+
+

ราคา ท่อ PPR สี่ทาง

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
20 มม.29
25 มม.34
32 มม.58
40 มม.101
50 มม.175
63 มม.453
+
+
+
+

ราคา ท่อ PPR ฝาครอบ

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
20 มม.8
25 มม.10
32 มม.17
40 มม.24
50 มม.46
63 มม.85
75 มม.154
90 มม.271
110 มม.446
+
+
+
+

ราคา ท่อ PPR ท่อครอส และ ข้องอลด

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
รายการขนาดราคา (บาท)
ท่อครอส D202040
ท่อครอส D252556
ท่อครอส D323298
ข้องอลด D25/2025/2022
ข้องอลด D32/2032/2033
ข้องอลด D32/2532/2533
ข้องอลด D40/3240/3239
+
+
+
+

ราคา ท่อ PPR ข้อลดกลม

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
D25/2015
D32/2020
D32/2520
D40/2033
D40/2533
D40/3233
D50/2062
D50/2562
D50/3262
D50/4064
D63/25102
D63/32105
D63/40111
D63/50114
D75/63242
D90/63342
D90/75349
D110/63547
D110/75575
D110/90593
+
+
+
+

ราคา ท่อ PPR บุชชิ่ง

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
D25/2013
D32/2017
D32/2517
D40/2029
D40/2529
D40/3229
D50/2055
D50/2555
D50/3255
D50/4055
D63/2079
D63/2579
D63/3279
D63/4079
D63/5079
D75/63173
D90/63246
D90/75246
D110/63394
D110/75410
D110/90410
+
+
+
+

ราคา ท่อ PPR สามทางลด

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ขนาดราคา (บาท)
D25/20/2528
D32/20/3247
D32/25/3251
D40/20/4069
D40/25/4075
D40/32/4075
D50/20/50102
D50/25/50106
D50/32/50106
D50/40/50108
D63/20/63122
D63/25/63197
D63/32/63200
D63/40/63203
D63/50/63205
D75/20/75205
+
+
+
+

ราคา ท่อ PPR สตับเอ็น และ ตัวแปลงหน้าจาน

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
รายการราคา (บาท)
สตับเอ็น D2015
สตับเอ็น D2521
สตับเอ็น D3236
ตัวแปลงหน้าจาน D4046
ตัวแปลงหน้าจาน D5058
ตัวแปลงหน้าจาน D6371
ตัวแปลงหน้าจาน D75161
ตัวแปลงหน้าจาน D90235
ตัวแปลงหน้าจาน D110372
+
+
+
+

ราคา ปลั๊กอุด ฝาครอบ(T) ปลั๊ก(S)

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
รายการราคา (บาท)
ปลั๊ก R1/2"4
ปลั๊ก R3/4"4
ปลั๊กเกลียวใน R1/2"8
ฝาครอบเกลียวใน (II) R1/2"7
+
+
+
+

ราคา คลิปก้ามปูสั้น คลิปก้ามปูยาว แผ่นวัดระยะ

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
รายการราคา (บาท)
คลิปก้ามปูสั้น D206
คลิปก้ามปูสั้น D257
คลิปก้ามปูสั้น D328
คลิปก้ามปูยาว D2010
คลิปก้ามปูยาว D2511
คลิปก้ามปูยาว D3212
แผ่นวัดระยะ D16-12520
+
+
+
+

ราคาข้อต่อตรง เกลียวในและนอก

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ข้อต่อเกลียวใน (Female)ราคาข้อต่อเกลียวนอก (Male)ราคา
D20×1/2"84D20×1/2"94
D20×3/4"114D20×3/4"123
D25×1/2"88D25×1/2"102
D25×3/4"123D25×3/4"127
D32×1/2"114D32×1/2"126
D32×3/4"170D32×3/4"173
D32×1"222D32×1"276
D40×1 1/4"324D40×1 1/4"376
D50×1 1/2"437D50×1 1/2"522
D63×2"724D63×2"793
D75×2 1/2"1,134D75×2 1/2"1,390
D90×3"3,540D90×3"3,590
+
+
+
+

ราคา ข้องอเกลียวในและนอก

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ข้องอเกลียวใน (Female)ราคาข้องอเกลียวนอก (Male)ราคา
D20×1/2"88D20×1/2"112
D20×3/4"114D20×3/4"135
D25×1/2"94D25×1/2"130
D25×3/4"120D25×3/4"136
D32×1/2"117D32×1/2"148
D32×3/4"182D32×3/4"219
D32×1"228D32×1"313
ข้องอเกลียวในชนิดมีหู D20×1/2"88ข้องอเกลียวในชนิดมีหู D25×1/2"94
ข้องอเกลียวในชนิดมีหู D25×3/4"120
+
+
+
+
+
+ +
+
+

📥 ดาวน์โหลดราคาสินค้า

+ +
+
+ +

สนใจสินค้าของเรา?

@@ -171,9 +1426,12 @@ import Footer from '@/components/common/Footer.astro'; 090-555-1415

+

+ โทร: 090-555-1415  |  Line Id: Jppselection  |  E-mail: dealplustech@gmail.com +

- + \ No newline at end of file diff --git a/src/pages/ท่อhdpe/index.astro b/src/pages/ท่อhdpe/index.astro index f745755..1482c20 100644 --- a/src/pages/ท่อhdpe/index.astro +++ b/src/pages/ท่อhdpe/index.astro @@ -184,6 +184,18 @@ import Footer from '@/components/common/Footer.astro'; +
+
+

📥 ดาวน์โหลดราคาสินค้า

+ +
+
+

สนใจสินค้าของเรา?

diff --git a/src/pages/ท่อพีพีอาร์ตราช้าง/index.astro b/src/pages/ท่อพีพีอาร์ตราช้าง/index.astro index d4b1181..9d7d2af 100644 --- a/src/pages/ท่อพีพีอาร์ตราช้าง/index.astro +++ b/src/pages/ท่อพีพีอาร์ตราช้าง/index.astro @@ -89,6 +89,18 @@ import Footer from '@/components/common/Footer.astro';
+
+
+

📥 ดาวน์โหลดราคาสินค้า

+ +
+
+

สนใจสินค้าของเรา?

diff --git a/src/pages/ท่อระบายน้ำ-3-ชั้น-ไซเลนท/index.astro b/src/pages/ท่อระบายน้ำ-3-ชั้น-ไซเลนท/index.astro index d09a400..d2b2945 100644 --- a/src/pages/ท่อระบายน้ำ-3-ชั้น-ไซเลนท/index.astro +++ b/src/pages/ท่อระบายน้ำ-3-ชั้น-ไซเลนท/index.astro @@ -72,7 +72,44 @@ import Footer from '@/components/common/Footer.astro';

รายละเอียดสินค้า

-

จำหน่าย ท่อระบายน้ำ 3 ชั้น ไซเลนท์ | XYLENT คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

+

+ ท่อระบายน้ำ 3 ชั้น ไซเลนท์ (XYLENT) ผลิตจากโรงงาน Poloplast ผู้ผลิตท่อ 3 ชั้น รายแรกของโลก มีโรงงานในเยอรมันและออสเตรียา เริ่มผลิตครั้งแรกในปี ค.ศ. 1991 ผ่านการรับรองคุณภาพจาก SKZ ประเทศเยอรมัน ตามมาตรฐาน EN 1451-1 +

+ +

คุณสมบัติเด่น

+
    +
  • เงียบกว่า — ดังเพียง 22 dB เท่านั้น ด้วยชั้นพลาสติกพีพีชนิดพิเศษที่เป็นฉนวนกันเสียง
  • +
  • แข็งแรง ทนต่อแรงกดทับได้ถึง 6 kN/m² ไม่เปราะแตกง่าย
  • +
  • ทนต่อสารเคมี ผลิตจากโพลีโพรพิลีนตามมาตรฐาน DIN 8087
  • +
  • ทนความร้อนได้สูงสุด 95°C อายุการใช้งานยาวนาน 50 ปี
  • +
  • ติดตั้งง่าย ด้วยระบบ Push Fit สวมล็อค ประหยัดเวลาและแรงงาน
  • +
  • ปลอดสารฮาโลเจน ปลอดภัยกว่าเมื่อเกิดอัคคีภัย
  • +
  • ประหยัดกว่าท่อเหล็กหล่อ (Cast Iron Pipe)
  • +
+ +

ข้อดีเทียบกับท่อเหล็กหล่อ (Cast Iron)

+
    +
  • ไม่เป็นสนิมกัดกร่อน
  • +
  • ไม่มีสะสมของตะกรัน รูในท่อไม่เล็กลงจนอุดตัน
  • +
  • อายุการใช้งานยาวนาน ต้นทุนค่าก่อสร้างถูกกว่า
  • +
  • ติดตั้งง่าย ใช้แรงงานน้อยกว่า
  • +
+ +

ขั้นตอนการติดตั้งระบบ Push Fit

+
    +
  1. ตัดท่อให้ได้ฉาก และแต่งปลายท่อ (มุมที่เหมาะสมคือ 15 องศา)
  2. +
  3. ทา Lubricant XYLENT ที่ด้านปลายปากระฆังให้ทั่ว
  4. +
  5. สวมท่อเข้ากับปลายปากระฆังจนกว่าจะสุด สามารถหมุนท่อเพื่อให้สวมเข้าได้ง่ายขึ้น
  6. +
  7. สามารถดึงท่อขึ้นมาได้สูงสุด 10 มม. หากจำเป็น
  8. +
  9. สำหรับการติดตั้งท่อในแนวตั้ง ใช้ตัวรัดท่อรัดที่ด้านล่างของปากระฆังทันทีหลังติดตั้ง
  10. +
+ +

การจัดเก็บ

+
    +
  • วางท่อแนวราบกับพื้นตลอดทั้งเส้น ป้องกันการโก่งงอ
  • +
  • วางท่อสลับหัวท้าย ให้ปลายปากระฆังยื่นออกมาเล็กน้อย
  • +
  • สามารถจัดเก็บกลางแจ้งได้สูงสุม 2 ปี หากเกินกว่านั้นสีจะซีดจางลง
  • +
@@ -89,6 +126,22 @@ import Footer from '@/components/common/Footer.astro';
+
+
+

📥 ดาวน์โหลดราคาสินค้า

+ +
+
+

สนใจสินค้าของเรา?

diff --git a/src/pages/ท่อไซเลอร์/index.astro b/src/pages/ท่อไซเลอร์/index.astro index 49695c6..44a1cda 100644 --- a/src/pages/ท่อไซเลอร์/index.astro +++ b/src/pages/ท่อไซเลอร์/index.astro @@ -72,7 +72,41 @@ import Footer from '@/components/common/Footer.astro';

รายละเอียดสินค้า

-

จำหน่าย ท่อไซเลอร์ (Syler) ท่อเหล็กเหล็กบุพีอี คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

+

+ ท่อไซเลอร์ (Syler) เป็นท่อเหล็กกล้า Class M ชุบสังกะสี ภายนอกจะถูกเคลือบด้วยผงโพลีเอทิลีน (PE powder coat) ป้องกันสนิมจากภายนอกอีกชั้นหนึ่ง จึงทำให้มั่นใจได้ว่าท่อไซเลอร์จะมีอายุการใช้งานยาวนานกว่าท่อเหล็ก Galvanized ถึง 50 ปี เพราะไม่เป็นสนิมจากภายนอก +

+

+ ส่วนภายในถูกบุด้วยพลาสติกโพลีเอทิลีน (PE) เพื่อป้องกันการเกิดสนิมภายใน เนื่องจากน้ำภายในท่อจะไม่สัมผัสกับตัวท่อ ท่อ SYLER ผลิตภายใต้มาตรฐานระบบคุณภาพ ISO 9001:2000 และ FM APPROVED +

+ +

คุณสมบัติเด่น

+
    +
  • ทนแรงดันได้ 50 bar อุณหภูมิใช้งานได้ถึง 90°C
  • +
  • ป้องกันปัญหาท่อรั่วซึมจากการกัดกร่อนของสนิม ท่อเป็นสนิมอุดตัน ท่อตกท้องช้าง ท่อกรอบแตกเมื่ออยู่กลางแจ้ง
  • +
  • ทนสารเคมีและสารก่อมะเร็งปนเปื้อน ไม่ลามไฟเมื่อเกิดอัคคีภัย
  • +
  • ติดตั้งง่ายแม้อยู่ในที่แคบ
  • +
  • ผ่านมาตรฐาน BS1387/85 CLASS M (BSM) ชุบสังกะสีหนากว่าปกติ
  • +
  • ผ่านการทดสอบมาตรฐาน BS6920 Part II (ปริมาณโลหะหนัก สี กลิ่น รส และการเจริญเติบโตของเชื้อจุลินทรีย์)
  • +
  • ปริมาณโลหะหนักที่ปนเปื้อนต่ำกว่ามาตรฐานตั้งแต่ 20-500 เท่า
  • +
+ +

การใช้งาน

+
    +
  • ท่อเมนขนาดใหญ่และท่อดับเพลิง
  • +
  • ระบบท่อประปาน้ำร้อน น้ำเย็น
  • +
  • ท่อเคมี ท่อลม ภายในบ้าน อาคารสูง คอนโด โรงแรม โรงพยาบาล
  • +
  • ระบบขนส่งสารเคมี Compression air Chilled pipe
  • +
  • ใช้ได้ทั้งภายในและภายนอกอาคาร
  • +
+ +

ข้อดีของระบบ Grooved Coupling

+
    +
  • ติดตั้งง่าย สะดวกรวดเร็ว ประหยัดค่าแรงและเวลา
  • +
  • โยกย้าย เปลี่ยนแปลงรูปแบบการติดตั้ง หรือขยายไลน์ท่อเพิ่มเติมได้โดยง่าย
  • +
  • รับแรงสั่นสะเทือน แรงกดจากแผ่นดินไหว ดูดซับเสียงได้ดี
  • +
  • รับแรงดันได้สูง 300-735 psi
  • +
  • ข้อต่อมี PE เคลือบผิวด้านใน คงคุณสมบัติเด่นของท่อไซเลอร์ไว้ครบ
  • +
diff --git a/src/pages/น็อต-แหวน-สกรู-hex-nut-flat-washer-hexagon-head-screw/index.astro b/src/pages/น็อต-แหวน-สกรู-hex-nut-flat-washer-hexagon-head-screw/index.astro deleted file mode 100644 index 19ad7f6..0000000 --- a/src/pages/น็อต-แหวน-สกรู-hex-nut-flat-washer-hexagon-head-screw/index.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW -
-
- -
-

น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD SCREW

-

- น็อต, แหวน, สกรู | HEX NUT, FLAT WASHER, HEXAGON HEAD S -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/พุกต่างๆ/index.astro b/src/pages/พุกต่างๆ/index.astro deleted file mode 100644 index ce272e1..0000000 --- a/src/pages/พุกต่างๆ/index.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- พุกต่างๆ -
-
- -
-

พุกต่างๆ

-

- ดรอปอิน | DROP-IN ANCHOR (DR) ส่งฟรี กรุงเทพมหานคร ปริม -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/พุกเหล็ก-sleeve-anchor-bolt/index.astro b/src/pages/พุกเหล็ก-sleeve-anchor-bolt/index.astro deleted file mode 100644 index 142c490..0000000 --- a/src/pages/พุกเหล็ก-sleeve-anchor-bolt/index.astro +++ /dev/null @@ -1,104 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- พุกเหล็ก | SLEEVE ANCHOR BOLT -
-
- -
-

พุกเหล็ก | SLEEVE ANCHOR BOLT

-

- จำหน่ายพุกเหล็ก | SLEEVE ANCHOR BOLTคุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-
-

รายละเอียดสินค้า

-
-

จำหน่าย พุกเหล็ก | SLEEVE ANCHOR BOLT คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

-
-
-
-
- - - -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/ยูโบลท์-u-bolt/index.astro b/src/pages/ยูโบลท์-u-bolt/index.astro deleted file mode 100644 index 2d665c6..0000000 --- a/src/pages/ยูโบลท์-u-bolt/index.astro +++ /dev/null @@ -1,113 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- ยูโบลท์ | U-Bolt -
-
- -
-

ยูโบลท์ | U-Bolt

-

- จำหน่ายยูโบลท์ | U-Boltคุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-
-

รายละเอียดสินค้า

-
-

จำหน่าย ยูโบลท์ | U-Bolt คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

-
-
-
-
- - -
-
-

รูปภาพสินค้าเพิ่มเติม

-
- ยูโบลท์ | U-Boltยูโบลท์ | U-Boltยูโบลท์ | U-Boltยูโบลท์ | U-Boltยูโบลท์ | U-Bolt -
-
-
- - -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/ยูโบลท์-ประกับ-u-bolt-clamp/index.astro b/src/pages/ยูโบลท์-ประกับ-u-bolt-clamp/index.astro deleted file mode 100644 index 134f176..0000000 --- a/src/pages/ยูโบลท์-ประกับ-u-bolt-clamp/index.astro +++ /dev/null @@ -1,104 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- ยูโบลท์ + ประกับ | U-BOLT CLAMP -
-
- -
-

ยูโบลท์ + ประกับ | U-BOLT CLAMP

-

- จำหน่ายยูโบลท์ + ประกับ | U-BOLT CLAMPคุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-
-

รายละเอียดสินค้า

-
-

จำหน่าย ยูโบลท์ + ประกับ | U-BOLT CLAMP คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

-
-
-
-
- - - -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/ยูโบลท์เหล็กแผ่น-ยูแบน-strap/index.astro b/src/pages/ยูโบลท์เหล็กแผ่น-ยูแบน-strap/index.astro deleted file mode 100644 index 1a8e8c1..0000000 --- a/src/pages/ยูโบลท์เหล็กแผ่น-ยูแบน-strap/index.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT -
-
- -
-

ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT

-

- ยูโบลท์เหล็กแผ่น (ยูแบน) | STRAP U-BOLT ส่งฟรี กรุงเทพม -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/สตัดเกลียวตลอด-เหล็ก-threaded-rod/index.astro b/src/pages/สตัดเกลียวตลอด-เหล็ก-threaded-rod/index.astro deleted file mode 100644 index 76a481c..0000000 --- a/src/pages/สตัดเกลียวตลอด-เหล็ก-threaded-rod/index.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- สตัดเกลียวตลอด (เหล็ก) | THREADED ROD -
-
- -
-

สตัดเกลียวตลอด (เหล็ก) | THREADED ROD

-

- สตัดเกลียวตลอด (เหล็ก) | THREADED ROD ส่งฟรี กรุงเทพมหา -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/สปริทริงแฮงเกอร์-sr19-adjustable-split-ring-hanger/index.astro b/src/pages/สปริทริงแฮงเกอร์-sr19-adjustable-split-ring-hanger/index.astro deleted file mode 100644 index cf21445..0000000 --- a/src/pages/สปริทริงแฮงเกอร์-sr19-adjustable-split-ring-hanger/index.astro +++ /dev/null @@ -1,113 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- แฮงเกอร์ แคล้ม (Hanger & Clamp) - อุปกรณ์ยึดยึดท่อ -
-
- -
-

แฮงเกอร์ แคล้ม (Hanger & Clamp) - อุปกรณ์ยึดยึดท่อ

-

- จำหน่ายแฮงเกอร์ แคล้ม (Hanger & Clamp) - อุปกรณ์ยึดยึดท่อคุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-
-

รายละเอียดสินค้า

-
-

จำหน่ายแฮงเกอร์ แคล้ม โบลท์ และอุปกรณ์ยึดยึดท่อทุกประเภท คุณภาพสูง สำหรับงานติดตั้งระบบท่อในอาคารและโรงงาน

ผลิตภัณฑ์:

- Split Ring Hanger: แฮงเกอร์แหวนปรับได้

- Clevis Hanger: แฮงเกอร์แบบกิ๊ฟ

- Beam Clamp: แคล้มยึดคาน

- U-Bolt: ยูโบลท์ยึดท่อ

- Pipe Clamp: แคล้มประกับท่อ

- Anchor Bolt: พุกยึดฐาน

- Threaded Rod: เกลียวร้อย

วัสดุ: เหล็กชุบสังกะสี, สแตนเลส

การใช้งาน:

- งานติดตั้งระบบท่อ

- งานระบบประปา

- งานระบบแอร์

- งานโรงงานอุตสาหกรรม

-
-
-
-
- - -
-
-

รูปภาพสินค้าเพิ่มเติม

-
- แฮงเกอร์ แคล้ม (Hanger & Clamp) - อุปกรณ์ยึดยึดท่อแฮงเกอร์ แคล้ม (Hanger & Clamp) - อุปกรณ์ยึดยึดท่อแฮงเกอร์ แคล้ม (Hanger & Clamp) - อุปกรณ์ยึดยึดท่อ -
-
-
- - -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/เครื่องเชื่อมท่อ-pipe-coupling-machine/index.astro b/src/pages/เครื่องเชื่อมท่อ-pipe-coupling-machine/index.astro index ebfb865..ab0fb52 100644 --- a/src/pages/เครื่องเชื่อมท่อ-pipe-coupling-machine/index.astro +++ b/src/pages/เครื่องเชื่อมท่อ-pipe-coupling-machine/index.astro @@ -79,6 +79,14 @@ import Footer from '@/components/common/Footer.astro';

เครื่องเชื่อม HDPE

+ +
+ เครื่องเชื่อม PPR +
+
+

เครื่องเชื่อม PPR

+
+
กรู๊ฟท่อ @@ -89,7 +97,7 @@ import Footer from '@/components/common/Footer.astro';
- Pipe Coupling + Pipe Coupling

Pipe Coupling

@@ -105,7 +113,7 @@ import Footer from '@/components/common/Footer.astro';
- เม็กกรู๊ฟ + เม็กกรู๊ฟ

เม็กกรู๊ฟ

diff --git a/src/pages/เครื่องเชื่อมท่อพีพีอา/index.astro b/src/pages/เครื่องเชื่อมท่อพีพีอา/index.astro index b876a33..5be9bbc 100644 --- a/src/pages/เครื่องเชื่อมท่อพีพีอา/index.astro +++ b/src/pages/เครื่องเชื่อมท่อพีพีอา/index.astro @@ -4,21 +4,21 @@ import Header from '@/components/common/Header.astro'; import Footer from '@/components/common/Footer.astro'; --- - +
-
+
- เครื่องเชื่อมท่อพีพีอาร์ + เครื่องเชื่อมท่อพีพีอาร์
-

เครื่องเชื่อมท่อพีพีอาร์

+

เครื่องเชื่อมท่อพีพีอาร์ | PPR Welding Machine

จำหน่ายเครื่องเชื่อมท่อพีพีอาร์คุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล

@@ -37,6 +37,12 @@ import Footer from '@/components/common/Footer.astro';
+
+ + + + มาตรฐานเยอรมัน DVGW +
@@ -72,24 +78,111 @@ import Footer from '@/components/common/Footer.astro';

รายละเอียดสินค้า

-

จำหน่าย เครื่องเชื่อมท่อพีพีอาร์ คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

+

เครื่องเชื่อม PPR ในการติดตั้งท่อไทยพีพี-อาร์ หรือท่อ PPR สามารถเชื่อมต่อท่อเข้าหากันได้หลายวิธีขึ้นอยู่กับขนาด และประเภทการใช้งานโดยรวมมี 2 แบบคือ "การเชื่อมสอด" และ "การเชื่อมชน"

+ +

วิธีการเชื่อมท่อ PPR:

+
    +
  • เครื่องเชื่อม PPR แบบการเชื่อมสอด (Socket Fusion) - ใช้ความร้อนที่ 250-260 องศาเซลเซียส ทำการหลอมละลายปลายท่อพีพีอาร์และข้อต่อท่อพีพีอาร์ ให้ประสานเป็นเนื้อเดียวกันไม่เกิดการรั่วซึม
  • +
  • เครื่องเชื่อม PPR แบบการเชื่อมชน (Butt Fusion) - สำหรับท่อขนาดใหญ่ ด้วยการหลอมด้วยความร้อนแล้วเชื่อมชนให้เป็นเนื้อเดียวกัน ไม่มีวันรั่วซึม
  • +
  • เครื่องเชื่อม PPR แบบ Electro Fusion (E.F.) - เทคโนโลยีที่ดีที่สุด สำหรับท่อขนาดใหญ่ D75-D315 สะดวกต่อการติดตั้งในที่แคบ
  • +
+ +

ข้อดีของการติดตั้งด้วยเครื่องเชื่อม PPR:

+
    +
  • ไม่ต้องใช้กาวหรือน้ำยาประสาน
  • +
  • ระบบการติดตั้งสะอาดและปลอดภัย
  • +
  • ไม่เกิดประกายไฟ ควัน หรือกลิ่นจากสารเคมี
  • +
  • เชื่อมต่อแน่นสนิท ไม่มีการรั่วซึม
  • +
  • อายุการใช้งานยาวนาน
  • +
+ +

มาตรฐาน: DVGW (เยอรมัน), มาตรฐานอุตสาหกรรม

+

การใช้งาน:

+
    +
  • งานระบบประปาในอาคาร
  • +
  • งานระบบน้ำร้อนและน้ำเย็น
  • +
  • งานโรงแรม โรงพยาบาล
  • +
  • งานโรงงานอุตสาหกรรม
  • +
- -
+ +
-

รูปภาพสินค้าเพิ่มเติม

-
- เครื่องเชื่อมท่อพีพีอาร์เครื่องเชื่อมท่อพีพีอาร์เครื่องเชื่อมท่อพีพีอาร์เครื่องเชื่อมท่อพีพีอาร์เครื่องเชื่อมท่อพีพีอาร์เครื่องเชื่อมท่อพีพีอาร์ +

เครื่องเชื่อมพร้อมหัวเชื่อม Welding Machine

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
รายการCodeSize (mm)Unit Price (Baht/PSC.)
ใช้กับท่อขนาด 1/2"-1"
D20-32 Small
411W020-032SD20-32 (Small)5,957.00
411W020-032LD20-32 (Large)8,676.00
411W020-063D20-6311,748.00
411W075-110D75-11015,362.00
411W125-000D12533,000.00
หัวเจาะอานม้า Aiguille
Aiguille
401A025-000D25770.00
401A032-000D32858.00
401A040-000D401,180.00
หัวเชื่อมอานม้า Welding Saddle Mould
Welding Saddle Mould
411S050-025D50-251,206.00
411S063-025D63-251,206.00
411S063-032D63-321,815.00
411S075-025D75-251,307.00
411S075-032D75-321,930.00
411S090-025D90-251,575.00
411S090-032D90-321,815.00
411S090-040D90-402,480.00
411S110-025D110-251,660.00
411S110-032D110-321,910.00
411S110-040D110-402,480.00
411S125-025D125-251,970.00
411S125-032D125-322,270.00
411S125-040D125-402,680.00
411S160-025D160-251,940.00
411S160-032D160-322,230.00
411S160-040D160-402,680.00
หัวเชื่อมแท่งซ่อม Repairing Stick Mould
Repairing Stick Mould
401R007-000D7679.00
401R011-000D11679.00
หัวเชื่อม Welding Mould
Welding Mould
401W020-000D20504.00
401W025-000D25603.00
401W032-000D32705.00
401W040-000D401,387.00
401W050-000D501,708.00
401W063-000D632,311.00
401W075-000D753,013.00
401W090-000D903,515.00
401W110-000D1104,078.00
401W125-000D1257,050.00
- -
+ +

สนใจสินค้าของเรา?

diff --git a/src/pages/เควิสแฮงเกอร์/index.astro b/src/pages/เควิสแฮงเกอร์/index.astro deleted file mode 100644 index bc1d38a..0000000 --- a/src/pages/เควิสแฮงเกอร์/index.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -

- -
-
-
-
-
-
- เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER -
-
- -
-

เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER

-

- เควิสแฮงเกอร์ | ADJUSTABLE CLEVIS HANGER ส่งฟรี กรุงเทพ -

- - -
- - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/เจโบลท์-แอลโบลท์-j-bolt-l-bolt/index.astro b/src/pages/เจโบลท์-แอลโบลท์-j-bolt-l-bolt/index.astro deleted file mode 100644 index d06cda0..0000000 --- a/src/pages/เจโบลท์-แอลโบลท์-j-bolt-l-bolt/index.astro +++ /dev/null @@ -1,113 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt -
-
- -
-

เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt

-

- จำหน่ายเจโบลท์, แอลโบลท์ | J-Bolt, L-Boltคุณภาพสูง ราคาโรงงาน ส่งฟรี กรุงเทพมหานคร และปริมณฑล -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-
-

รายละเอียดสินค้า

-
-

จำหน่าย เจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt คุณภาพสูง ราคาโรงงาน ส่งฟรี กทม. ปริมณฑล

-
-
-
-
- - -
-
-

รูปภาพสินค้าเพิ่มเติม

-
- เจโบลท์, แอลโบลท์ | J-Bolt, L-Boltเจโบลท์, แอลโบลท์ | J-Bolt, L-Bolt -
-
-
- - -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -
- diff --git a/src/pages/เทอร์โมเบรค-thermobreak/index.astro b/src/pages/เทอร์โมเบรค-thermobreak/index.astro index a85dbfc..e2d6841 100644 --- a/src/pages/เทอร์โมเบรค-thermobreak/index.astro +++ b/src/pages/เทอร์โมเบรค-thermobreak/index.astro @@ -196,6 +196,18 @@ import Footer from '@/components/common/Footer.astro';
+
+
+

📥 ดาวน์โหลดราคาสินค้า

+ +
+
+

สนใจสินค้าของเรา?

diff --git a/src/pages/เม็กกรู๊ฟ-คับปลิ้ง/index.astro b/src/pages/เม็กกรู๊ฟ-คับปลิ้ง/index.astro index ca4b03d..d1962aa 100644 --- a/src/pages/เม็กกรู๊ฟ-คับปลิ้ง/index.astro +++ b/src/pages/เม็กกรู๊ฟ-คับปลิ้ง/index.astro @@ -67,6 +67,95 @@ import Footer from '@/components/common/Footer.astro';
+ +
+
+

ตารางราคาสินค้า MECH Grooved

+ +
+
+ Rigid Coupling +
+ +
+ Flexible Coupling +
+ +
+ Grooved Flange +
+ +
+ Elbow +
+ +
+ Reducer +
+ +
+ Tee +
+ +
+ Female Threaded +
+ +
+ Cap +
+ +
+ Mechanical Tee Grooved +
+ +
+ Mechanical Tee Threaded +
+ +
+ U-Bolt +
+ +
+ Gasket +
+ +
+ Coupling +
+ +
+ Flange +
+ +
+ Reducer Tee +
+ +
+ Cross Cap +
+ +
+ Mechanical Tee +
+
+
+
+ +
+
+

📥 ดาวน์โหลดราคาสินค้า

+ +
+
+

สนใจสินค้าของเรา?

diff --git a/src/pages/แคล้มประกับ-ชุบรุ้ง-ชุบ/index.astro b/src/pages/แคล้มประกับ-ชุบรุ้ง-ชุบ/index.astro deleted file mode 100644 index a5fe657..0000000 --- a/src/pages/แคล้มประกับ-ชุบรุ้ง-ชุบ/index.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import BaseLayout from '@/layouts/BaseLayout.astro'; -import Header from '@/components/common/Header.astro'; -import Footer from '@/components/common/Footer.astro'; ---- - - -
- -
-
-
-
-
-
- แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) -
-
- -
-

แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์)

-

- แคล้มประกับ (ชุบรุ้ง/ชุบซิ๊งค์) | EMT CONDUIT / IMC CON -

- - - - - -
-
- - - - คุณภาพสูง มาตรฐานอุตสาหกรรม -
-
- - - - ราคาโรงงาน คุ้มค่า -
-
- - - - จัดส่งรวดเร็ว ส่งฟรี กทม. ปริมณฑล -
-
- - - - รับประกันสินค้า -
-
-
-
-
-
- -
-
-

สนใจสินค้าของเรา?

-

- ติดต่อเราวันนี้เพื่อรับคำแนะนำและราคาพิเศษ -

- -
-
-
- -