f72170b4f3
- app/pages/index.vue: JSON-LD utilise siteConfig.jobTitle (Hytale Plugin Developer)
+ siteConfig.contact.email au lieu de hardcode "Developpeur Full Stack"
- nuxt.config.ts: site.name "Developpeur Full Stack" → "Hytale Plugin Developer"
- app/data/site.ts: description "Professional Full Stack Developer..." →
"Hytale Plugin Developer & Web Developer..."
- i18n/fr.json + en.json: refonte positionnement sur 14 clés
- a11y.logoLabel, seo.home/about/contact, about.title/intro/approach/cta,
home.cta2, contact.title/subtitle/faq.projectTypes, projects.subtitle
- Le titre principal "Hytale Plugin Developer & [Freelance] Web Dev"
- Les 2 occurrences "full stack" restantes sont contextuelles (skills)
Laisse les projets web/bot existants (virtual-tour, flowboard, xinko...) visibles,
mentionne Hytale plugins car Phase 10 (5 démos) est planifiée.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
113 lines
3.1 KiB
TypeScript
113 lines
3.1 KiB
TypeScript
import type { SiteConfig, ContactInfo, SocialLink, FiverrService, FiverrConfig } from '~~/shared/types'
|
|
|
|
export type { SiteConfig, ContactInfo, SocialLink, FiverrService, FiverrConfig }
|
|
|
|
export const siteConfig: SiteConfig = {
|
|
name: 'Killian',
|
|
title: "Killian' DAL-CIN - Hytale Plugin Developer | Freelance",
|
|
description:
|
|
'Hytale Plugin Developer & Web Developer. Custom Java plugins for Hytale servers, gaming websites, Discord bots, and full-stack web applications.',
|
|
jobTitle: 'Hytale Plugin Developer',
|
|
author: 'Killian',
|
|
url: 'https://killiandalcin.fr',
|
|
|
|
contact: {
|
|
email: 'contact@killiandalcin.fr',
|
|
location: 'France',
|
|
},
|
|
|
|
social: [
|
|
{
|
|
name: 'Gitea',
|
|
url: 'https://gitea.kamisama.ovh/kayjaydee',
|
|
icon: 'i-simple-icons-gitea',
|
|
username: 'kayjaydee',
|
|
},
|
|
{
|
|
name: 'LinkedIn',
|
|
url: 'https://linkedin.com/in/killian-dal-cin',
|
|
icon: 'i-simple-icons-linkedin',
|
|
username: 'killian-dalcin',
|
|
},
|
|
{
|
|
name: 'Discord',
|
|
url: 'https://discord.com/users/370940770225618954',
|
|
icon: 'i-simple-icons-discord',
|
|
username: 'kayjaydee',
|
|
},
|
|
{
|
|
name: 'Email',
|
|
url: 'mailto:contact@killiandalcin.fr',
|
|
icon: 'i-lucide-mail',
|
|
},
|
|
],
|
|
|
|
fiverr: {
|
|
profileUrl: 'https://www.fiverr.com/users/mr_kayjaydee',
|
|
services: [
|
|
{
|
|
id: 'discord-bot',
|
|
url: 'https://www.fiverr.com/s/rEDa84j',
|
|
image: '/images/fiverr/discord_bot.webp',
|
|
price: '$25',
|
|
},
|
|
{
|
|
id: 'minecraft-plugin',
|
|
url: 'https://www.fiverr.com/s/xXVY20Q',
|
|
image: '/images/fiverr/minecraft_plugin.webp',
|
|
price: '$50',
|
|
},
|
|
{
|
|
id: 'telegram-bot',
|
|
url: 'https://www.fiverr.com/users/mr_kayjaydee',
|
|
image: '/images/fiverr/telegram_bot.webp',
|
|
price: '$20',
|
|
},
|
|
{
|
|
id: 'website-development',
|
|
url: 'https://www.fiverr.com/users/mr_kayjaydee',
|
|
image: '/images/fiverr/website.webp',
|
|
price: '$50',
|
|
},
|
|
],
|
|
},
|
|
|
|
seo: {
|
|
defaultImage: '/portfolio-preview.webp',
|
|
twitterHandle: '@killiandalcin',
|
|
locale: 'en_US',
|
|
alternateLocales: ['fr_FR'],
|
|
internalLinks: {
|
|
priority: [
|
|
{ url: '/fiverr', text: 'Services Fiverr', priority: 0.9 },
|
|
{ url: '/projects', text: 'Portfolio', priority: 0.8 },
|
|
{ url: '/contact', text: 'Contact', priority: 0.8 },
|
|
],
|
|
services: [
|
|
{ url: '/fiverr#discord-bot', text: 'Bot Discord' },
|
|
{ url: '/fiverr#minecraft-plugin', text: 'Plugin Minecraft' },
|
|
{ url: '/fiverr#telegram-bot', text: 'Bot Telegram' },
|
|
{ url: '/fiverr#website-development', text: 'Developpement Web' },
|
|
],
|
|
},
|
|
organization: {
|
|
'@type': 'ProfessionalService',
|
|
name: "Killian' DAL-CIN - Hytale Plugin Developer",
|
|
logo: 'https://killiandalcin.fr/logo.webp',
|
|
priceRange: '$$$',
|
|
aggregateRating: {
|
|
ratingValue: '5',
|
|
reviewCount: '5',
|
|
},
|
|
},
|
|
},
|
|
|
|
performance: {
|
|
enablePrefetch: true,
|
|
enablePreconnect: true,
|
|
criticalCSS: true,
|
|
lazyLoadImages: true,
|
|
webpSupport: true,
|
|
},
|
|
}
|