Files
dealplustech/src/app/about-us/page.tsx
2026-02-25 22:04:30 +07:00

120 lines
7.7 KiB
TypeScript

import Image from 'next/image';
import { siteConfig } from '@/data/site-config';
export const metadata = {
title: 'เกี่ยวกับเรา',
description: 'เรียนรู้เพิ่มเติมเกี่ยวกับดีลพลัสเทค ผู้เชี่ยวชาญด้านวัสดุท่อและอุปกรณ์ระบบท่อ',
};
export default function AboutPage() {
return (
<div className="pt-32 pb-16">
<div className="container mx-auto px-4">
{/* Hero */}
<div className="relative h-[400px] -mt-32 mb-12 rounded-b-3xl overflow-hidden">
<div className="absolute inset-0 bg-gradient-to-r from-secondary-900 via-secondary-800 to-secondary-900" />
<div className="absolute inset-0 flex items-center justify-center">
<div className="text-center">
<h1 className="text-4xl md:text-5xl font-bold text-white mb-4">
<span className="text-primary-400">{siteConfig.name}</span>
</h1>
<p className="text-xl text-secondary-200">
</p>
</div>
</div>
</div>
{/* Company Story */}
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 mb-16">
<div>
<h2 className="text-3xl font-bold text-secondary-900 mb-6"></h2>
<div className="space-y-4 text-secondary-600">
<p>
{siteConfig.nameTh}
</p>
<p>
10
</p>
<p>
</p>
</div>
</div>
<div className="relative aspect-video bg-secondary-100 rounded-xl overflow-hidden">
<Image
src="/images/2021/03/hdpe-pipe_000C.jpg"
alt="เกี่ยวกับดีลพลัสเทค"
fill
className="object-cover"
/>
</div>
</div>
{/* Vision & Mission */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mb-16">
<div className="card-industrial">
<h3 className="text-2xl font-bold text-primary-400 mb-4"></h3>
<p className="text-secondary-200">
</p>
</div>
<div className="card-industrial">
<h3 className="text-2xl font-bold text-primary-400 mb-4"></h3>
<p className="text-secondary-200">
</p>
</div>
</div>
{/* Core Values */}
<div className="text-center mb-12">
<h2 className="text-3xl font-bold text-secondary-900 mb-8"></h2>
<div className="grid grid-cols-1 md:grid-cols-4 gap-6">
<div className="p-6 bg-primary-50 rounded-xl">
<div className="w-12 h-12 bg-primary-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg className="w-6 h-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h4 className="font-bold text-secondary-900 mb-2"></h4>
<p className="text-secondary-600 text-sm"></p>
</div>
<div className="p-6 bg-primary-50 rounded-xl">
<div className="w-12 h-12 bg-primary-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg className="w-6 h-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h4 className="font-bold text-secondary-900 mb-2"></h4>
<p className="text-secondary-600 text-sm"></p>
</div>
<div className="p-6 bg-primary-50 rounded-xl">
<div className="w-12 h-12 bg-primary-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg className="w-6 h-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>
</div>
<h4 className="font-bold text-secondary-900 mb-2"></h4>
<p className="text-secondary-600 text-sm"></p>
</div>
<div className="p-6 bg-primary-50 rounded-xl">
<div className="w-12 h-12 bg-primary-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg className="w-6 h-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
</svg>
</div>
<h4 className="font-bold text-secondary-900 mb-2"></h4>
<p className="text-secondary-600 text-sm"></p>
</div>
</div>
</div>
</div>
</div>
);
}