Initial commit

This commit is contained in:
r2xrzh9q2z-lab
2026-02-02 11:00:08 +07:00
commit d53d4417b2
116 changed files with 79533 additions and 0 deletions

73
app/services/page.tsx Normal file
View File

@@ -0,0 +1,73 @@
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 Vấn Thêm?
</h2>
<p className="text-gray-700 mb-6">
Liên hệ với chúng tôi đ đưc vấn miễn phí 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>
);
}

View File

@@ -0,0 +1,58 @@
{
"title": "Dịch Vụ Của Chúng Tôi",
"subtitle": "Giải pháp toàn diện cho nhu cầu visa và du lịch",
"services": [
{
"id": "visa-consulting",
"name": "Tư Vấn Visa",
"description": "Tư vấn chuyên sâu về thủ tục visa cho hơn 50 quốc gia",
"icon": "🛂",
"features": [
"Tư vấn miễn phí",
"Hỗ trợ 24/7",
"Đảm bảo thành công",
"Thủ tục nhanh chóng"
],
"price": "Từ 500,000 VNĐ"
},
{
"id": "document-preparation",
"name": "Chuẩn Bị Hồ Sơ",
"description": "Hỗ trợ chuẩn bị và kiểm tra hồ sơ visa chính xác",
"icon": "📋",
"features": [
"Kiểm tra hồ sơ kỹ lưỡng",
"Hướng dẫn chi tiết",
"Dịch thuật chuyên nghiệp",
"Bảo mật thông tin"
],
"price": "Từ 300,000 VNĐ"
},
{
"id": "travel-booking",
"name": "Đặt Vé & Khách Sạn",
"description": "Dịch vụ đặt vé máy bay và khách sạn với giá ưu đãi",
"icon": "✈️",
"features": [
"Giá cạnh tranh",
"Đặt chỗ linh hoạt",
"Hỗ trợ thay đổi",
"Bảo hiểm du lịch"
],
"price": "Phí dịch vụ 2%"
},
{
"id": "tour-packages",
"name": "Tour Trọn Gói",
"description": "Các gói tour du lịch được thiết kế chuyên nghiệp",
"icon": "🌍",
"features": [
"Lịch trình linh hoạt",
"Hướng dẫn viên chuyên nghiệp",
"Bao gồm visa",
"Bảo hiểm toàn diện"
],
"price": "Từ 15,000,000 VNĐ"
}
]
}