- 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>
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
// src/i18n/locales/de/footer.ts
|
|
const footer = {
|
|
sections: {
|
|
contact: {
|
|
title: "Kontakt",
|
|
email: "info@damjan-savic.com",
|
|
location: "Köln, Deutschland",
|
|
aria: {
|
|
emailLink: "E-Mail senden",
|
|
locationText: "Standort"
|
|
}
|
|
},
|
|
navigation: {
|
|
title: "Navigation",
|
|
links: {
|
|
portfolio: "Portfolio",
|
|
blog: "Blog",
|
|
about: "Über mich",
|
|
contact: "Kontakt"
|
|
}
|
|
},
|
|
social: {
|
|
title: "Social Media",
|
|
aria: {
|
|
linkedin: "Besuchen Sie mein LinkedIn Profil",
|
|
github: "Besuchen Sie mein GitHub Profil"
|
|
}
|
|
}
|
|
},
|
|
legal: {
|
|
copyright: "Alle Rechte vorbehalten",
|
|
links: {
|
|
privacy: "Datenschutz",
|
|
imprint: "Impressum",
|
|
terms: "AGB"
|
|
}
|
|
}
|
|
} as const;
|
|
|
|
export default footer;
|
|
export type FooterTranslations = typeof footer; |