- 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>
71 lines
2.5 KiB
TypeScript
71 lines
2.5 KiB
TypeScript
// src/i18n/locales/en/portfolio/index.ts
|
|
import { aiDataReader } from './projects/ai-data-reader';
|
|
import kamenpro from './projects/kamenpro';
|
|
import smartWarehouse from './projects/smart-warehouse';
|
|
import powerPlatformGovernance from './projects/power-platform-governance';
|
|
import websiteMitKi from './projects/website-mit-ki';
|
|
import aiMusicProduction from './projects/ai-music-production';
|
|
import automatedAdCreatives from './projects/automated-ad-creatives';
|
|
import cursorIde from './projects/cursor-ide';
|
|
export const portfolio = {
|
|
// Meta information for the portfolio page
|
|
seo: {
|
|
title: 'Portfolio - Damjan Savić',
|
|
description: 'Discover my projects in JTL integration, e-commerce, and digital transformation.'
|
|
},
|
|
// Portfolio headings and filters
|
|
sections: {
|
|
title: 'Portfolio',
|
|
subtitle: 'Selected projects and references',
|
|
filterTitle: 'Categories',
|
|
sortTitle: 'Sort'
|
|
},
|
|
// Filter options
|
|
filters: {
|
|
all: 'All',
|
|
categories: {
|
|
'Data Science': 'Data Science',
|
|
'AI Development': 'AI Development',
|
|
'Integration': 'Integration',
|
|
'Full-Stack Development': 'Full-Stack Development',
|
|
'Data Processing': 'Data Processing',
|
|
'Content Production': 'Content Production',
|
|
'Machine Learning': 'Machine Learning',
|
|
'Automation': 'Automation',
|
|
'Web Development': 'Web Development',
|
|
'AI & Automation': 'AI & Automation',
|
|
'Enterprise Software': 'Enterprise Software'
|
|
}
|
|
},
|
|
// Sort options
|
|
sort: {
|
|
date: 'Date',
|
|
title: 'Title',
|
|
category: 'Category'
|
|
},
|
|
// UI texts
|
|
ui: {
|
|
loading: 'Loading projects...',
|
|
noProjects: 'No projects found',
|
|
viewProject: 'View project',
|
|
backToPortfolio: 'Back to portfolio',
|
|
technologies: 'Technologies',
|
|
client: 'Client',
|
|
duration: 'Duration',
|
|
visitWebsite: 'Visit website',
|
|
viewRepository: 'View repository',
|
|
viewDocumentation: 'Documentation'
|
|
},
|
|
// All projects
|
|
projects: {
|
|
'ai-data-reader': aiDataReader,
|
|
'kamenpro': kamenpro,
|
|
'smart-warehouse': smartWarehouse,
|
|
'power-platform-governance': powerPlatformGovernance,
|
|
'website-mit-ki': websiteMitKi,
|
|
'ai-music-production': aiMusicProduction,
|
|
'automated-ad-creatives': automatedAdCreatives,
|
|
'cursor-ide': cursorIde,
|
|
}
|
|
};
|