import React from 'react'; import { motion } from 'framer-motion'; import { useInView } from 'react-intersection-observer'; const Education = () => { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.1, }); return (
Education

University of Virginia, Charlottesville, VA

Bachelor of Arts, Computer Science
Expected May 2026
GPA: 3.7/4.0
Relevant Coursework:

Data structures and algorithms, Computer systems and organization, Software development essentials

); }; export default Education;