import servicesData from "./services.json";
export default function ServicesPage() {
return (
{/* Header */}
{servicesData.title}
{servicesData.subtitle}
{/* Services Grid */}
{servicesData.services.map((service) => (
{/* Service Header */}
{service.icon}
{service.name}
{service.price}
{/* Description */}
{service.description}
{/* Features */}
Tính năng:
{service.features.map((feature, index) => (
-
✓
{feature}
))}
{/* CTA Button */}
))}
{/* Contact CTA */}
Cần Tư Vấn Thêm?
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
);
}