update text

This commit is contained in:
Melvin Ragusa
2026-02-12 19:14:08 +01:00
parent 6452ed9962
commit 57369a7996

View File

@@ -1,80 +1,96 @@
import type { Translations } from './de';
import type { Translations } from "./de";
export const en: Translations = {
// Navigation
nav: {
home: 'Home',
about: 'About Me',
contact: 'Contact',
home: "Home",
about: "About Me",
contact: "Contact",
},
// Hero Section
hero: {
greeting: 'Welcome to',
company: 'Ragusa IT-Consulting',
tagline: 'Websites that',
rotatingWords: ['generate leads', 'convert visitors', 'perform measurably', 'support your growth'],
cta: 'Book a Free Discovery Call',
ctaSecondary: 'Why Ragusa IT?',
scroll: 'Scroll',
greeting: "Welcome to",
company: "Ragusa IT-Consulting",
tagline: "Websites that",
rotatingWords: [
"generate leads",
"convert visitors",
"perform measurably",
"support your growth",
],
cta: "Book a Free Discovery Call",
ctaSecondary: "Why Ragusa IT?",
scroll: "Scroll",
},
// Services
services: {
title: 'Services Built for Outcomes',
subtitle: 'Practical IT solutions that save time and help you win new clients',
title: "Services Built for Outcomes",
subtitle:
"Practical IT solutions that save time and help you win new clients",
items: [
{
title: 'Web Development',
description: 'Conversion-focused websites and web apps that build trust and generate qualified leads.',
icon: 'code',
title: "Web Development",
description:
"Conversion-focused websites and web apps that build trust and generate qualified leads.",
icon: "code",
},
{
title: 'Tech Support',
description: 'Fast help for critical issues so your day-to-day operations keep running smoothly.',
icon: 'support',
title: "Tech Support",
description:
"Fast help for critical issues so your day-to-day operations keep running smoothly.",
icon: "support",
},
{
title: 'IT Consulting',
description: 'Hands-on guidance for infrastructure, tools, and processes aligned with your budget.',
icon: 'consulting',
title: "IT Consulting",
description:
"Hands-on guidance for infrastructure, tools, and processes aligned with your budget.",
icon: "consulting",
},
{
title: 'Hosting & Maintenance',
description: 'Reliable care with updates, monitoring, and clear ownership for your online presence.',
icon: 'hosting',
title: "Hosting & Maintenance",
description:
"Reliable care with updates, monitoring, and clear ownership for your online presence.",
icon: "hosting",
},
],
},
// About
about: {
title: 'About Me',
subtitle: 'Your personal IT partner',
intro: 'I\'m Melvin Ragusa, and I run Ragusa IT-Consulting as a solo business. I help companies and freelancers with hands-on IT support and web solutions — focused on clear, practical outcomes.',
experience: 'With experience in web development and IT consulting, I help businesses and individuals solve technical challenges quickly and pragmatically.',
title: "About Me",
subtitle: "Your personal IT partner",
intro:
"I'm Melvin Ragusa, and I run Ragusa IT-Consulting as a solo business. I help companies and freelancers with hands-on IT support and web solutions — focused on clear, practical outcomes.",
experience:
"With experience in web development and IT consulting, I help businesses and individuals solve technical challenges quickly and pragmatically.",
skills: {
title: 'Technologies',
subtitle: 'Modern tools for modern solutions',
title: "Technologies",
subtitle: "Modern tools for modern solutions",
},
values: {
title: 'Why work with me?',
title: "Why work with me?",
items: [
{
title: 'Direct Contact',
description: 'You always work directly with me — no handoffs and no changing points of contact.',
title: "Direct Contact",
description:
"You always work directly with me — no handoffs and no changing points of contact.",
},
{
title: 'Local & Accessible',
description: 'I am locally available and can support you on-site when needed.',
title: "Local & Accessible",
description:
"I am locally available and can support you on-site when needed.",
},
{
title: 'Fair, Clear Pricing',
description: 'I work with transparent pricing and no hidden extra fees.',
title: "Fair, Clear Pricing",
description:
"I work with transparent pricing and no hidden extra fees.",
},
{
title: 'Fast Response',
description: 'I reply quickly and handle issues in a practical, no-nonsense way.',
title: "Fast Response",
description:
"I reply quickly and handle issues in a practical, no-nonsense way.",
},
],
},
@@ -82,37 +98,38 @@ export const en: Translations = {
// Contact
contact: {
title: 'Contact',
subtitle: 'Let\'s work together',
intro: 'Share your project or issue briefly — I\'ll reply quickly with a concrete assessment and recommended next action.',
title: "Contact",
subtitle: "Let's work together",
intro:
"Share your project or issue briefly — I'll reply quickly with a concrete assessment and recommended next action.",
form: {
name: 'Name',
namePlaceholder: 'Your name',
email: 'Email',
emailPlaceholder: 'your@email.com',
subject: 'Subject',
subjectPlaceholder: 'What is it about?',
message: 'Message',
messagePlaceholder: 'Your message...',
submit: 'Send Message',
sending: 'Sending...',
success: 'Message sent successfully! I\'ll get back to you soon.',
error: 'Error sending message. Please try again or contact me directly.',
rateLimit: 'Too many requests. Please wait a moment.',
name: "Name",
namePlaceholder: "Your name",
email: "Email",
emailPlaceholder: "your@email.com",
subject: "Subject",
subjectPlaceholder: "What is it about?",
message: "Message",
messagePlaceholder: "Your message...",
submit: "Send Message",
sending: "Sending...",
success: "Message sent successfully! I'll get back to you soon.",
error: "Error sending message. Please try again or contact me directly.",
rateLimit: "Too many requests. Please wait a moment.",
},
info: {
title: 'Contact Info',
email: 'Email',
location: 'Location',
github: 'GitHub',
title: "Contact Info",
email: "Email",
location: "Location",
github: "GitHub",
},
},
// Footer
footer: {
copyright: '© {year} Ragusa IT-Consulting. All rights reserved.',
madeIn: 'Made in Germany with',
love: 'love',
impressum: 'Imprint',
copyright: "© {year} Ragusa IT-Consulting. All rights reserved.",
madeIn: "Made in Germany with",
love: "love",
impressum: "Imprint",
},
};