import React from "react"; import { VerticalTimeline, VerticalTimelineElement, } from "react-vertical-timeline-component"; import { motion } from "framer-motion"; import "react-vertical-timeline-component/style.min.css"; import { SectionWrapper } from "src/hoc"; import { textVariant } from "src/utils/motion"; import { styles } from "src/style"; import { experiences } from "src/constans"; const ExperienceCard = ({ experience }) => { return ( } >

{experience.title}

{experience.company_name}

); }; const Experience = () => { return ( <>

User journey road map{" "}

{experiences.map((experience, index) => ( ))}

" Now, your coffee shop's symphony plays harmoniously with Briz."

); }; export default SectionWrapper(Experience, "work");