Files
ragusaitweb/src/i18n/en.ts
2026-02-12 19:07:19 +01:00

119 lines
3.7 KiB
TypeScript

import type { Translations } from './de';
export const en: Translations = {
// Navigation
nav: {
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',
},
// Services
services: {
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: '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: '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 run Ragusa IT-Consulting as a solo business, helping companies and freelancers with hands-on IT support and web solutions. My focus is 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',
},
values: {
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: '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: 'Fast Response',
description: 'I reply quickly and handle issues in a practical, no-nonsense way.',
},
],
},
},
// 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.',
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.',
},
info: {
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',
},
};