diff --git a/src/app/cookie-policy/page.tsx b/src/app/cookie-policy/page.tsx
new file mode 100644
index 000000000..0a15f5c2c
--- /dev/null
+++ b/src/app/cookie-policy/page.tsx
@@ -0,0 +1,47 @@
+import { Metadata } from 'next';
+
+export const metadata: Metadata = {
+ title: 'นโยบายคุกกี้',
+ description: 'นโยบายการใช้งานคุกกี้ของเว็บไซต์บริษัท ดีล พลัส เทค จำกัด',
+};
+
+export default function CookiePolicy() {
+ return (
+
+
+ นโยบายคุกกี้
+ ปรับปรุงล่าสุด: 10 มีนาคม 2026
+
+
+
+ 1. คุกกี้คืออะไร?
+
+ คุกกี้คือไฟล์ข้อความขนาดเล็กที่เว็บไซต์บันทึกลงบนอุปกรณ์ของท่าน เพื่อช่วยให้เว็บไซต์จดจำการกระทำและความชอบของท่าน
+
+
+
+
+ 2. คุกกี้ที่เราใช้
+
+ - คุกกี้ที่จำเป็น: จำเป็นสำหรับการทำงานของเว็บไซต์
+ - คุกกี้วิเคราะห์: ช่วยเราเข้าใจการใช้งานเว็บไซต์ (ต้องได้รับความยินยอม)
+
+
+
+
+ 3. การจัดการคุกกี้
+ ท่านสามารถจัดการการตั้งค่าคุกกี้ได้โดยแบนเนอร์คุกกี้ที่ปรากฏด้านล่างของเว็บไซต์
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 82bfff3cf..e4c0c7670 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -4,6 +4,7 @@ import '@/styles/globals.css';
import Header from '@/components/layout/Header';
import Footer from '@/components/layout/Footer';
import FloatingContact from '@/components/layout/FloatingContact';
+import CookieConsent from '@/components/CookieConsent';
import GoogleAnalytics from '@/components/analytics/GoogleAnalytics';
const kanit = Kanit({
@@ -146,6 +147,7 @@ export default function RootLayout({
{children}
+