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:
@@ -0,0 +1,39 @@
|
||||
<script setup lang="ts">
|
||||
const { t } = useI18n()
|
||||
|
||||
useSeoMeta({
|
||||
title: () => t('seo.hytale.title'),
|
||||
description: () => t('seo.hytale.description'),
|
||||
ogTitle: () => t('seo.hytale.title'),
|
||||
ogDescription: () => t('seo.hytale.description'),
|
||||
ogImage: 'https://killiandalcin.fr/og-image.png',
|
||||
ogType: 'website',
|
||||
})
|
||||
|
||||
useHead({
|
||||
script: [{
|
||||
type: 'application/ld+json',
|
||||
innerHTML: JSON.stringify({
|
||||
'@context': 'https://schema.org',
|
||||
'@type': 'Service',
|
||||
name: 'Hytale Plugin Development',
|
||||
provider: {
|
||||
'@type': 'Person',
|
||||
name: "Killian' DAL-CIN",
|
||||
jobTitle: 'Hytale Plugin Developer',
|
||||
},
|
||||
}),
|
||||
}],
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<HytaleHeroSection />
|
||||
<HytaleServicesSection />
|
||||
<HytalePricingSection />
|
||||
<div class="relative bg-gray-50/50 dark:bg-gray-900/20">
|
||||
<TestimonialsSection />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
+1
-1
@@ -63,7 +63,7 @@ useHead({
|
||||
|
||||
<!-- Testimonials Section -->
|
||||
<div class="relative bg-gray-50/50 dark:bg-gray-900/20">
|
||||
<TestimonialsSection />
|
||||
<TestimonialsSection featured />
|
||||
</div>
|
||||
|
||||
<!-- FAQ Section -->
|
||||
|
||||
Reference in New Issue
Block a user