forked from UKSOURCE/hailearning.edu.vn
74 lines
2.6 KiB
TypeScript
74 lines
2.6 KiB
TypeScript
import servicesData from "./services.json";
|
|
|
|
export default function ServicesPage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-8">
|
|
<div className="max-w-6xl mx-auto">
|
|
{/* Header */}
|
|
<div className="text-center mb-12">
|
|
<h1 className="text-4xl font-bold text-gray-900 mb-4">
|
|
{servicesData.title}
|
|
</h1>
|
|
<p className="text-xl text-gray-600">{servicesData.subtitle}</p>
|
|
</div>
|
|
|
|
{/* Services Grid */}
|
|
<div className="grid md:grid-cols-2 lg:grid-cols-2 gap-8">
|
|
{servicesData.services.map((service) => (
|
|
<div
|
|
key={service.id}
|
|
className="bg-white rounded-lg shadow-lg p-6 hover:shadow-xl transition-shadow"
|
|
>
|
|
{/* Service Header */}
|
|
<div className="flex items-center mb-4">
|
|
<span className="text-4xl mr-4">{service.icon}</span>
|
|
<div>
|
|
<h3 className="text-xl font-semibold text-gray-900">
|
|
{service.name}
|
|
</h3>
|
|
<p className="text-blue-600 font-medium">{service.price}</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Description */}
|
|
<p className="text-gray-700 mb-6">{service.description}</p>
|
|
|
|
{/* Features */}
|
|
<div className="mb-6">
|
|
<h4 className="font-semibold text-gray-900 mb-3">Tính năng:</h4>
|
|
<ul className="space-y-2">
|
|
{service.features.map((feature, index) => (
|
|
<li key={index} className="flex items-center text-gray-700">
|
|
<span className="text-green-500 mr-2">✓</span>
|
|
{feature}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
|
|
{/* CTA Button */}
|
|
<button className="w-full bg-blue-600 text-white py-2 px-4 rounded-lg hover:bg-blue-700 transition-colors">
|
|
Tìm Hiểu Thêm
|
|
</button>
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
{/* Contact CTA */}
|
|
<div className="text-center mt-12 bg-gray-50 rounded-lg p-8">
|
|
<h2 className="text-2xl font-bold text-gray-900 mb-4">
|
|
Cần Tư Vấn Thêm?
|
|
</h2>
|
|
<p className="text-gray-700 mb-6">
|
|
Liên hệ với chúng tôi để được tư vấn miễn phí và nhận báo giá chi
|
|
tiết
|
|
</p>
|
|
<button className="bg-green-600 text-white px-8 py-3 rounded-lg hover:bg-green-700 transition-colors">
|
|
Liên Hệ Ngay
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|