From 861afce086d8838d029d12298a20026e0eb35af4 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Fri, 27 Feb 2026 21:30:29 +0700 Subject: [PATCH] Redesign Services page and fix featured products images on homepage --- src/app/page.tsx | 10 +- src/app/services/page.tsx | 260 ++++++++++++++++++++++++++++++++------ 2 files changed, 229 insertions(+), 41 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e87b5694f..6e57d2ea2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,15 @@ import Link from 'next/link'; import { productCategories, siteConfig } from '@/data/site-config'; export default function HomePage() { - const featuredProducts = productCategories.slice(0, 6); + // Featured products with proper images - manually selected for variety + const featuredProducts = [ + productCategories.find(p => p.id === 'ppr-elephant')!, + productCategories.find(p => p.id === 'hdpe')!, + productCategories.find(p => p.id === 'valve')!, + productCategories.find(p => p.id === 'grilles')!, + productCategories.find(p => p.id === 'thermobreak')!, + productCategories.find(p => p.id === 'upvc')!, + ]; return ( <> diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index a2f581f4f..aad8928d9 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,4 +1,5 @@ import Image from 'next/image'; +import Link from 'next/link'; export const metadata = { title: 'บริการของเรา', @@ -9,75 +10,254 @@ const services = [ { title: 'จำหน่ายวัสดุท่อ', description: 'จำหน่ายท่อพีพีอาร์ ท่อ HDPE ท่อ PVC วาล์ว และอุปกรณ์ต่อท่อครบวงจร สินค้าคุณภาพ ราคาแข่งขันได้', - image: '/images/2021/03/ppr-pipe_000C.jpg', + icon: ( + + + + ), }, { title: 'ให้คำปรึกษา', description: 'ทีมงานมืออาชีพพร้อมให้คำปรึกษาเกี่ยวกับการเลือกวัสดุท่อที่เหมาะสมกับโครงการของคุณ', - image: '/images/2021/03/hdpe-pipe_000C.jpg', + icon: ( + + + + ), }, { title: 'ออกแบบระบบ', description: 'บริการออกแบบระบบท่อน้ำ ระบบดับเพลิง และระบบปรับอากาศ โดยวิศวกรผู้เชี่ยวชาญ', - image: '/images/2021/03/valve_000C.jpg', + icon: ( + + + + ), + }, + { + title: 'ติดตั้งระบบ', + description: 'ทีมช่างผู้เชี่ยวชาญติดตั้งระบบท่อครบวงจร พร้อมรับประกันงาน', + icon: ( + + + + + ), }, { title: 'จัดส่งสินค้า', description: 'บริการจัดส่งสินค้าทั่วประเทศ รวดเร็ว ปลอดภัย มีประกันความเสียหาย', - image: '/images/2021/03/hdpe-welding_000C-1.jpg', + icon: ( + + + + ), + }, + { + title: 'บริการหลังการขาย', + description: 'ทีมงานพร้อมให้การดูแลและบริการซ่อมบำรุงหลังการขายตลอดอายุการใช้งาน', + icon: ( + + + + ), + }, +]; + +const processSteps = [ + { + step: '01', + title: 'ปรึกษา', + description: 'ติดต่อเราเพื่อปรึกษาเกี่ยวกับความต้องการของโครงการ', + }, + { + step: '02', + title: 'ออกแบบ', + description: 'ทีมวิศวกรออกแบบระบบให้เหมาะสมกับการใช้งาน', + }, + { + step: '03', + title: 'เสนอราคา', + description: 'เสนอราคาสินค้าและบริการอย่างโปร่งใส', + }, + { + step: '04', + title: 'ติดตั้ง', + description: 'ทีมช่างติดตั้งโดยมืออาชีพตรงตามกำหนด', }, ]; export default function ServicesPage() { return ( -
-
- {/* Hero */} -
-

- บริการของเรา -

-

- บริการครบวงจรตั้งแต่การให้คำปรึกษาจนถึงการจัดส่งสินค้า -

+
+ {/* Hero Section */} +
+
+ บริการของเรา +
+
+ + บริการครบวงจร + +

+ บริการของเรา +

+

+ ตั้งแต่การให้คำปรึกษา ออกแบบ จัดส่ง จนถึงติดตั้ง เราพร้อมดูแลโครงการของคุณครบวงจร +

+
+
- {/* Services Grid */} -
- {services.map((service, index) => ( -
-
- {service.title} -
-
-

{service.title}

+ {/* Services Grid */} +
+
+
+ {services.map((service, index) => ( +
+
+ {service.icon} +
+

+ {service.title} +

+

+ {service.description} +

+
+ ))} +
+
+
+ + {/* Process Section */} +
+
+
+

+ ขั้นตอนการทำงาน +

+

+ เราให้ความสำคัญกับทุกขั้นตอน เพื่อให้ลูกค้าได้รับบริการที่ดีที่สุด +

+
+ +
+ {processSteps.map((item, index) => ( +
+
+ {item.step} +

{item.title}

+

{item.description}

+
+ {index < processSteps.length - 1 && ( +
+ + + +
+ )} +
+ ))} +
+
+
+ + {/* Why Choose Us */} +
+
+
+
+

+ ทำไมต้องเลือกดีลพลัสเทค +

+
+
+
+ + + +
+
+

ประสบการณ์กว่า 10 ปี

+

เชี่ยวชาญด้านระบบท่อและอุปกรณ์ครบวงจร

+
+
+
+
+ + + +
+
+

สินค้าคุณภาพ

+

สินค้าผ่านมาตรฐาน มอก. / FM / UL พร้อมรับประกัน

+
+
+
+
+ + + +
+
+

ทีมงานมืออาชีพ

+

วิศวกรและช่างผู้เชี่ยวชาญพร้อมให้คำปรึกษา

+
+
+
+
+ + + +
+
+

บริการรวดเร็ว

+

จัดส่งสินค้าทั่วประเทศ ตรงตามกำหนด

+
-
-

{service.description}

-
- ))} +
+ ทีมงานมืออาชีพ +
+
+
- {/* CTA */} -
-

+ {/* CTA */} +
+
+

พร้อมเริ่มโครงการของคุณ?

-

+

ติดต่อเราวันนี้เพื่อรับคำปรึกษาและใบเสนอราคาฟรี

- - ติดต่อเรา - +
+ + ติดต่อเรา + + + โทร: 090-555-1415 + +
-

+
); }