diff --git a/src/pages/portfolio.astro b/src/pages/portfolio.astro index 8b07cf5..a713526 100644 --- a/src/pages/portfolio.astro +++ b/src/pages/portfolio.astro @@ -1,29 +1,320 @@ --- -import Layout from '../layouts/Layout.astro'; +import Layout from '../layouts/Layout.astro' + +const portfolioItems = [ + { + name: "Lungfinler", + url: "https://lungfinler.com", + category: "webdev", + thumbnail: "/images/portfolio/lungfinler.png", + description: "Digital Agency - บริการด้านการสร้างแบรนด์ กราฟิกดีไซน์ และถ่ายภาพสินค้าคุณภาพสูง", + services: ["Website", "Branding", "Graphic Design"] + }, + { + name: "Jet Industries", + url: "https://jetindustries.co.th", + category: "webdev", + thumbnail: "/images/portfolio/jetindustries.png", + description: "ผู้ผลิตพลาสติกฉีดขึ้นรูปอย่างแม่นยำ (Precision Plastic Injection Molding) มีประสบการณ์กว่า 40 ปี", + services: ["Website", "Industrial"] + }, + { + name: "สำนักงานกฎหมาย ตถาตา", + url: "https://lawyernoom.com", + category: "webdev", + thumbnail: "/images/portfolio/lawyernoom.png", + description: "สำนักงานกฎหมายโดย ทนายความ คมสัน ศรีวนิชย์ - บริการด้านคดีความ คดีแพ่ง คดีอาญา", + services: ["Website", "Legal"] + }, + { + name: "Underdog Marketing", + url: "https://underdog.run", + category: "webdev", + thumbnail: "/images/portfolio/underdog.png", + description: "บล็อกการตลาดและการขายสไตล์ ลุยไม่ยั้ง โดย บุ้ง ดีดติ่งหู", + services: ["Website", "Content Marketing"] + }, + { + name: "Baofuling Shop", + url: "https://baofulingshop.com", + category: "ecommerce", + thumbnail: "/images/portfolio/baofuling.png", + description: "ร้านค้าออนไลน์ครีมบัวหิมะและผลิตภัณฑ์ความงามจีน", + services: ["E-commerce", "Beauty"] + }, + { + name: "เทรนเนอร์ซันนี่", + url: "https://trainersunny.com", + category: "webdev", + thumbnail: "/images/portfolio/trainersunny.png", + description: "ผู้เชี่ยวชาญด้านการพัฒนาบุคลากรและ Soft Skill", + services: ["Website", "Training"] + }, + { + name: "เลือดจระเข้วานิไทย", + url: "https://เลือดจระเข้วานิไทย.com", + category: "ecommerce", + thumbnail: "/images/portfolio/luadjob.png", + description: "ตัวแทนจำหน่ายเลือดจระเข้วานิไทยอย่างเป็นทางการ", + services: ["E-commerce", "Health"] + }, + { + name: "ทวนทอง 99", + url: "https://tuanthong99.com", + category: "ecommerce", + thumbnail: "/images/portfolio/tuanthong.png", + description: "ร้านค้าออนไลน์สมุนไพรไทยคุณภาพสูง", + services: ["E-commerce", "Thai Herbal"] + }, + { + name: "Odoo Portal", + url: "https://odooportal.com", + category: "marketing", + thumbnail: "/images/portfolio/odooportal.png", + description: "ตัวแทนจำหน่าย Odoo อย่างเป็นทางการในประเทศไทย", + services: ["Odoo ERP", "System Implementation"] + } +] + +const categories = [ + { id: 'all', name: 'ทั้งหมด' }, + { id: 'webdev', name: 'พัฒนาเว็บไซต์' }, + { id: 'ecommerce', name: 'อีคอมเมิร์ซ' }, + { id: 'marketing', name: 'ที่ปรึกษาการตลาด' } +] --- - -