import { motion } from 'framer-motion' import { useInView } from 'react-intersection-observer' import { FiBriefcase, FiCalendar, FiMapPin } from 'react-icons/fi' const EXPERIENCES = [ { company: 'BAAR Technologies', role: 'Jr. Automation Engineer', type: 'Full-time', period: 'Feb 2026 - Mar 2026 · 2 mos', location: 'Kolkata, West Bengal, India · On-site', accent: '#6366f1', highlights: [ 'Built and optimized automation-driven backend systems using Python and Django, streamlining workflows and reducing manual effort.', 'Designed and managed high-performance databases with Microsoft SQL Server, leveraging ORM for efficient data handling.', 'Developed scalable APIs, optimized SQL queries and stored procedures, and ensured data integrity across systems.', 'Collaborated with cross-functional teams to deliver reliable automation solutions while debugging and enhancing system performance.', 'Gained strong expertise in backend engineering, database optimization, and process automation.', ], skills: ['Python', 'Django', 'Databases', 'SQL Server Management Studio', 'ORM', 'Microsoft SQL Server'], }, ] export default function Experience() { const [ref, inView] = useInView({ triggerOnce: true, threshold: 0.15 }) return (
Experience

Work Experience

Professional experience building real-world backend and AI automation systems.

{EXPERIENCES.map((exp, i) => (

{exp.role}

{exp.company} {exp.type}
{exp.period}
{exp.location}
    {exp.highlights.map((h, j) => (
  • {h}
  • ))}
{exp.skills.map(s => ( {s} ))}
))}
) }