import { motion } from "framer-motion"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { vscDarkPlus } from "react-syntax-highlighter/dist/esm/styles/prism"; 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 Hero = () => { return (
πŸ‘‹ Hello, I'm MillyZ {" "} Data Analyst & App Developer I analyze data to extract meaningful insights and drive business decisions. Proficient in Python and data visualization tools like PowerBI. {" "} View My Work Contact Me
{`const aboutMe: Profile = { username: "MillicentZhao", location: "Beijing, CN πŸ‡¨πŸ‡³ -> Providence, RI πŸ‡ΊπŸ‡Έ", role: "Data Explorer and Flutter Developer", stack: { languages: ["SQL", "Python", "Dart"], frameworks: ["PowerBI", "Flutter"], }, traits: [ "enthusiastically curious", "critical thinker", "energentically outgoing", "creative sketcher", ], missionStatement: "Learn from data. Always keep creating!" };`}
πŸ’» {" "} Currently working on something awesome!
); };