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