Portfolio Update: Recrobot hinzugefügt, Blog-Beitrag entfernt, UI verbessert

- Neues Portfolio-Projekt: Recrobot (KI-gestütztes Recruiting Tool)
- Portfolio-Projekt: Website mit KI hinzugefügt
- Blog-Beitrag "Automatisierte Ad Creatives" entfernt
- Gradient-Overlay von Portfolio-Karten entfernt
- Projekt-Ordner für Cover-Bilder erstellt
- Übersetzungen für alle drei Sprachen (DE, EN, SR)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-13 21:11:57 +01:00
co-authored by Claude Opus 4.5
parent 88a76e5fa9
commit 52937b94c1
50 changed files with 1949 additions and 374 deletions
+18 -2
View File
@@ -85,7 +85,7 @@ const Hero = () => {
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.2 }}
className="text-white text-sm sm:text-base tracking-wider mb-2"
className="text-zinc-400 text-sm sm:text-base tracking-wider mb-2"
>
{t('pages.home.hero.title')}
</motion.p>
@@ -93,10 +93,26 @@ const Hero = () => {
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.3 }}
className="text-4xl sm:text-5xl font-bold mb-8 flex items-center"
className="text-4xl sm:text-5xl font-bold mb-3 flex items-center"
>
{t('pages.home.hero.name')}<span className="animate-pulse ml-1">|</span>
</motion.h1>
<motion.p
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.35 }}
className="text-zinc-300 text-sm sm:text-base max-w-xl text-center mb-2 px-4"
>
{t('pages.home.hero.description')}
</motion.p>
<motion.p
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.38 }}
className="text-zinc-500 text-xs sm:text-sm mb-8"
>
{t('pages.home.hero.currentRole')}
</motion.p>
{/* Navigation */}
<motion.div