2026-04-25 00:24:01 +02:00
|
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
|
|
import { motion } from 'framer-motion'
|
|
|
|
|
|
import Image from 'next/image'
|
2026-04-25 19:34:59 +02:00
|
|
|
|
import programmiererImg from '../public/Programmierer.png'
|
2026-04-25 00:24:01 +02:00
|
|
|
|
|
|
|
|
|
|
export function ProgrammerGraphic() {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<motion.div
|
|
|
|
|
|
initial={{ opacity: 0, scale: 0.95 }}
|
|
|
|
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
|
|
|
|
transition={{ duration: 0.8 }}
|
2026-04-25 19:30:19 +02:00
|
|
|
|
className="relative w-full max-w-xs mx-auto aspect-[3/5] sm:max-w-sm lg:max-w-md lg:aspect-square"
|
2026-04-25 00:24:01 +02:00
|
|
|
|
>
|
2026-04-25 00:28:29 +02:00
|
|
|
|
<Image
|
2026-04-25 19:34:59 +02:00
|
|
|
|
src={programmiererImg}
|
2026-04-25 00:28:29 +02:00
|
|
|
|
alt="Programmierung: Von 1976 bis heute – 50 Jahre Code"
|
|
|
|
|
|
fill
|
|
|
|
|
|
className="object-contain drop-shadow-lg"
|
|
|
|
|
|
priority
|
|
|
|
|
|
/>
|
2026-04-25 00:24:01 +02:00
|
|
|
|
</motion.div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|