feat(hytale): implement Hytale plugin development page and related components

- 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.
This commit is contained in:
2026-04-11 04:19:27 +02:00
parent 215fba6342
commit 39f2a81e8f
17 changed files with 1080 additions and 201 deletions
+8
View File
@@ -85,10 +85,18 @@ export interface FiverrConfig {
services: FiverrService[]
}
export interface PricingTier {
id: string
priceFixed: string | null
priceLabel?: string
featured?: boolean
}
export interface SiteConfig {
name: string
title: string
description: string
jobTitle?: string
author: string
contact: ContactInfo
social: SocialLink[]