import { motion } from "framer-motion"; import { ArrowDown, Github, Linkedin, Mail } from "lucide-react"; export const Hero = () => { return (
{/* Animated background elements */}
Welcome to my portfolio Hi, I'm{" "} Sujan Katuwal A passionate full-stack developer crafting beautiful digital experiences {[ { icon: Github, href: "#", label: "GitHub" }, { icon: Linkedin, href: "#", label: "LinkedIn" }, { icon: Mail, href: "#contact", label: "Email" }, ].map((social, index) => ( ))}
); };