// app/components/Hero.tsx import React, {useEffect, useState} from "react"; import Image from "next/image"; export default function Hero() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { setTimeout(() => { setIsVisible(true); }, 150); // Delay to start the animation }, []); return (

Hi, I’m Dennis

Student & Software Engineer

Based in Osnabrück, Germany

Passionate about technology, coding, and solving real-world problems. I enjoy building innovative solutions and continuously expanding my knowledge.

Currently working on exciting projects that merge creativity with functionality. Always eager to learn and collaborate!

Image of Dennis
); }