- Replace Vite + React Router with Next.js 15 App Router - Implement i18n with next-intl (URL-based: /de, /en, /sr) - Add SSR/SSG for all pages (48 static pages generated) - Setup Supabase SSR client for auth - Migrate all pages: Home, About, Portfolio, Blog, Contact, Login, Dashboard, Imprint, Privacy, Terms - Add Docker support with standalone output - Replace i18next with next-intl JSON translations - Use next/image for optimized images Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
884 B
TypeScript
27 lines
884 B
TypeScript
// src/i18n/locales/en/pages/contact/contactinfo.ts
|
|
export const contactinfo = {
|
|
// Header
|
|
title: 'Contact Information',
|
|
description: 'You can reach me through the following channels',
|
|
// Contact Method Labels
|
|
addressLabel: 'Office Location',
|
|
phoneLabel: 'Phone',
|
|
emailLabel: 'Email',
|
|
// Contact Information
|
|
address: 'Rotdornallee, Köln',
|
|
phone: '+49 175 695 0979',
|
|
email: 'info@damjan-savic.com',
|
|
// Additional Information
|
|
availabilityNote: 'Business hours: Monday to Friday, 9:00 AM - 5:00 PM',
|
|
// Aria Labels
|
|
aria: {
|
|
contactCard: 'Contact information card',
|
|
addressLink: 'Open location in Google Maps',
|
|
phoneLink: 'Call',
|
|
emailLink: 'Send email',
|
|
externalLink: 'Opens in new tab'
|
|
}
|
|
} as const;
|
|
|
|
// Type for type safety
|
|
export type ContactInfoTranslations = typeof contactinfo; |