import { motion } from "framer-motion"; const fadeInUp = { initial: { opacity: 0, y: 20 }, animate: { opacity: 1, y: 0 }, transition: { duration: 0.6 }, }; const staggerContainer = { animate: { transition: { staggerChildren: 0.1, }, }, }; export const Navbar = () => { return ( Portfolio Home Projects Contact ); };