"use client"; import { motion } from "framer-motion"; import { ArrowDown, Github, Linkedin, Mail } from "lucide-react"; import { useLocale, useTranslations } from "next-intl"; const Hero = () => { const locale = useLocale(); const t = useTranslations("home.hero"); return (
{/* Dynamic Background */}
{/* Availability Badge */} Available for work {/* Main Title */}

Building Digital Products

{/* Subtitle */} I'm Dennis, a Software Engineer crafting polished web & mobile experiences with a focus on performance and design. {/* Buttons */} View My Work
{/* Scroll Indicator */}
); }; export default Hero;