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
+9
View File
@@ -0,0 +1,9 @@
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 },
]
+4 -3
View File
@@ -4,9 +4,10 @@ export type { SiteConfig, ContactInfo, SocialLink, FiverrService, FiverrConfig }
export const siteConfig: SiteConfig = {
name: 'Killian',
title: "Killian' DAL-CIN - Full Stack Developer | Vue.js, React, Node.js Expert",
title: "Killian' DAL-CIN - Hytale Plugin Developer | Freelance",
description:
'Professional Full Stack Developer specializing in modern web development with Vue.js, React, Node.js. Expert in Discord bots, web applications, and custom software solutions.',
jobTitle: 'Hytale Plugin Developer',
author: 'Killian',
url: 'https://killiandalcin.fr',
@@ -91,12 +92,12 @@ export const siteConfig: SiteConfig = {
},
organization: {
'@type': 'ProfessionalService',
name: "Killian' DAL-CIN - Developpeur Full Stack",
name: "Killian' DAL-CIN - Hytale Plugin Developer",
logo: 'https://killiandalcin.fr/logo.webp',
priceRange: '$$$',
aggregateRating: {
ratingValue: '5',
reviewCount: '10',
reviewCount: '5',
},
},
},
+3 -1
View File
@@ -25,6 +25,7 @@ export const testimonials: Testimonial[] = [
"Travail excellent, Communication au top, Disponible en tout temps, réactif et à l'écoute je le recommande vivement et reviendrai vers lui si je dois refaire un projet similaire !",
date: '22/04/2023',
platform: 'Fiverr',
featured: true,
project_type: 'Bot Discord',
results: ["Prix: Jusqu'à 50€", 'Durée: 4 jours', 'Communication parfaite'],
},
@@ -51,6 +52,7 @@ export const testimonials: Testimonial[] = [
'Excellent développeur, la commande fut plus rapide que prévu la communication est instantané et le résultat est parfait. Je recommande fortement et reviendrai sûrement pour des mise à jour !',
date: '12/11/2022',
platform: 'Fiverr',
featured: true,
project_type: 'Bot Discord',
results: [
'Livraison plus rapide que prévu',
@@ -73,7 +75,7 @@ export const testimonials: Testimonial[] = [
]
export const testimonialsStats: TestimonialsStats = {
totalReviews: 10,
totalReviews: 5,
averageRating: 5.0,
projectsCompleted: 25,
}