"use client"; import { motion } from "framer-motion"; import { ArrowDown, Github, Linkedin, Mail, Code, Zap } from "lucide-react"; import { useLocale, useTranslations } from "next-intl"; const Hero = () => { const locale = useLocale(); const t = useTranslations("home.hero"); return (
{/* Liquid Ambient Background */}
{/* Profile / dk0.dev Badge */}
dk
dk0.dev
{/* Floating decorative icons */}
{/* Huge Headlines */}

Engineer Design

{/* Description */} Merging technical excellence with high-end aesthetic.
Based in Osnabrück, building globally.
{/* Primary Actions */}
START EXPLORING
{[ { icon: Github, href: "https://github.com/Denshooter" }, { icon: Linkedin, href: "https://linkedin.com/in/dkonkol" }, { icon: Mail, href: "mailto:contact@dk0.dev" } ].map((social, i) => ( ))}
{/* Modern Scroll Indicator */} Scroll Down
); }; export default Hero;