feat(rebrand): pricing market-calibrated + remove /fiverr entirely
PRICING (/hytale) calibrated from market research (RESEARCH/Hytale/): - Plugin Express: from 400€ (1-2j, petit système scopé) - Projet Sur-Mesure: from 1 500€ (2-6 sem, featured popular) - Système MMO Complet: from 5 000€ (4-8 sem, stack complet) - Retainer Mensuel: from 800€/mois (4-8h/sem) - Site Gaming/Serveur: from 1 000€ (Nuxt SSR + vote-rewards) Source: TJM défensif senior Java FR 7ans = €450-650/jour (Freelance.com, Arc.dev, Portage360). Segments cibles : small network (2-5 staff) + mid-tier RPG/MMO (5-15 staff). Hobbyistes redirigés vers plugins productisés BBB $15-25 (phase 10 future). REMOVED /fiverr page entirely: - Deleted app/pages/fiverr.vue (page removed from build + SEO) - Removed from AppHeader navLinks + AppFooter quickLinks + socialLinks - Removed nav.fiverr + a11y.fiverr + seo.fiverr + full fiverr.* block from fr.json + en.json (~75 clés chacun) - Removed fiverr + FiverrConfig + FiverrService from site.ts + shared types - Removed /fiverr internal links priority (redirected to /hytale) - JSON-LD index.vue sameAs cleaned (LinkedIn + Gitea only, no Fiverr) - reviewsLink testimonials redirected to /contact Rationale: analyse de marché explicite "Fiverr destroys senior positioning faster than it generates revenue" RESEARCH/Hytale/ added (3 deep reports on pricing + prospection).
This commit is contained in:
+8
-5
@@ -1,9 +1,12 @@
|
||||
import type { PricingTier } from '~~/shared/types'
|
||||
|
||||
// Pricing calibrated from Hytale/Minecraft market research (April 2026)
|
||||
// Source: RESEARCH/Hytale/ — TJM senior Java FR €450-650/jour
|
||||
// Segments cibles : small network (2-5 staff) + mid-tier RPG/MMO (5-15 staff)
|
||||
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 },
|
||||
{ id: 'simple', priceFixed: '400€', featured: false },
|
||||
{ id: 'complex', priceFixed: '1 500€', featured: true },
|
||||
{ id: 'custom', priceFixed: '5 000€', featured: false },
|
||||
{ id: 'maintenance', priceFixed: '800€/mois', featured: false },
|
||||
{ id: 'web', priceFixed: '1 000€', featured: false },
|
||||
]
|
||||
|
||||
+6
-37
@@ -1,6 +1,6 @@
|
||||
import type { SiteConfig, ContactInfo, SocialLink, FiverrService, FiverrConfig } from '~~/shared/types'
|
||||
import type { SiteConfig, ContactInfo, SocialLink } from '~~/shared/types'
|
||||
|
||||
export type { SiteConfig, ContactInfo, SocialLink, FiverrService, FiverrConfig }
|
||||
export type { SiteConfig, ContactInfo, SocialLink }
|
||||
|
||||
export const siteConfig: SiteConfig = {
|
||||
name: 'Killian',
|
||||
@@ -42,36 +42,6 @@ export const siteConfig: SiteConfig = {
|
||||
},
|
||||
],
|
||||
|
||||
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',
|
||||
@@ -79,15 +49,14 @@ export const siteConfig: SiteConfig = {
|
||||
alternateLocales: ['fr_FR'],
|
||||
internalLinks: {
|
||||
priority: [
|
||||
{ url: '/fiverr', text: 'Services Fiverr', priority: 0.9 },
|
||||
{ url: '/hytale', text: 'Hytale Plugin Development', 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' },
|
||||
{ url: '/hytale#pricing', text: 'Hytale Pricing' },
|
||||
{ url: '/hytale', text: 'Custom Plugin Development' },
|
||||
{ url: '/contact', text: 'Request a Quote' },
|
||||
],
|
||||
},
|
||||
organization: {
|
||||
|
||||
Reference in New Issue
Block a user