import pricingData from "./pricing.json"; export default function PricingPage() { return (
{/* Header */}

{pricingData.title}

{pricingData.subtitle}

💡 {pricingData.note}

{/* Pricing Packages */}
{pricingData.packages.map((pkg) => (
{/* Popular Badge */} {pkg.popular && (
Phổ biến nhất
)} {/* Package Header */}

{pkg.name}

{pkg.description}

{parseInt(pkg.price).toLocaleString()} {pkg.currency}
{/* Features */}

Bao gồm:

    {pkg.features.map((feature, index) => (
  • {feature}
  • ))}
{/* Limitations */} {pkg.limitations.length > 0 && (

Lưu ý:

    {pkg.limitations.map((limitation, index) => (
  • {limitation}
  • ))}
)} {/* CTA Button */}
))}
{/* Additional Services */}

Dịch Vụ Bổ Sung

{pricingData.additionalServices.map((service, index) => (

{service.name}

{parseInt(service.price).toLocaleString()} VNĐ
/{service.unit}

{service.description}

))}
{/* Country Pricing */}

Phí Visa Theo Quốc Gia

{pricingData.countries.map((country, index) => ( ))}
Quốc gia Phí visa Thời gian xử lý Tỷ lệ thành công
{country.name} {parseInt(country.visaFee).toLocaleString()} VNĐ {country.processingTime} {country.successRate}
{/* Contact CTA */}

Cần Tư Vấn Chi Tiết?

Liên hệ với chúng tôi để được tư vấn miễn phí và nhận báo giá phù hợp nhất

); }