Using Framer Motion add smooth spring effect in navbar:
Steps to complete this task:
- In
App.tsx file put <NavbarComponent /> in a motion.div
import {motion} from "framer-motion"
- Add props in
motion.div tag:
initial={{ opacity:0, y:100 }} animate={{ opacity:1, y:0 }} transition={{ duration: 0.5, delay: 0.1, type: "spring" }}