39f2a81e8f
- Added a new `/hytale` page with sections for hero, services, and pricing. - Updated existing components to support Hytale-specific content and i18n. - Modified site configuration and state to reflect the new focus on Hytale plugin development. - Enhanced testimonials section to feature relevant client feedback. - Adjusted navigation to include a link to the new Hytale page.
10 lines
463 B
TypeScript
10 lines
463 B
TypeScript
import type { PricingTier } from '~~/shared/types'
|
|
|
|
export const hytalePricing: PricingTier[] = [
|
|
{ id: 'simple', priceFixed: '50€', featured: false },
|
|
{ id: 'complex', priceFixed: null, priceLabel: 'Sur devis', featured: true },
|
|
{ id: 'custom', priceFixed: null, priceLabel: 'Sur devis', featured: false },
|
|
{ id: 'maintenance', priceFixed: '30€/mois', featured: false },
|
|
{ id: 'web', priceFixed: null, priceLabel: 'Sur devis', featured: false },
|
|
]
|