import Image from "next/image"; import { FileText, Github, Mail, Linkedin } from "lucide-react"; const Hero = () => { const socialLinks = [ { title: "My CV", href: "/cv.pdf", icon: }, { title: "GitHub", href: "https://github.com/GKaszewski", icon: , }, { title: "My email", href: "mailto:gabrielkaszewski@gmail.com", icon: , }, { title: "LinkedIn", href: "https://www.linkedin.com/in/gabriel-kaszewski-5344b3183", icon: , }, ]; return (
Background

Gabriel Kaszewski

Full-Stack Developer

{socialLinks.map((link) => ( {link.icon} ))}

Photo by me Łazy, 2018 (compressed)

); }; export default Hero;