import { Typewriter } from "react-simple-typewriter"; import { motion } from "framer-motion"; import { Link } from "react-scroll"; import { PROFILE } from "../constants"; const Hero = () => { return (
{/* Background Elements */}
👋 Welcome to my portfolio

Hi, I'm {PROFILE.name}

{PROFILE.shortBio}

{/* Scroll Down Indicator */}
); }; export default Hero;