Recommendations
Hear what my colleagues and clients have to say about working with me

Marcie Rolston
Co-founder & Director, HR/Finance
Tyler (Gyeong-Min) Lee was a valuable member of our team at BuiltSpace Technologies Corp. from January 2022 to February 2025, serving as a Full-Stack Software Developer. Throughout his time with us, he consistently demonstrated strong work ethic, reliability, and a collaborative spirit. Tyler's positive attitude, technical skills, and dedication played a key role in the success of our projects. He was always willing to go the extra mile and worked exceptionally well with his colleagues. I confidently recommend him as a trustworthy, capable professional who will bring value and excellence to any team.
Marcie Rolston.tsx
Marcie Rolston.tsx
1"use client";
2
3export default function Marcie() {
4 const marcie = useSelector((state: RootState) => state.Marcie);
5 const { title, description, name } = marcie;
6 return (
7 <div className="mb-10">
8 <h2 className="bg-black text-white rounded-full text-sm w-fit px-4 py-1 mb-4">
9 {title}
10 </h2>
11 <p className="text-xl mb-4">{name}</p>
12 <div className="text-sm prose-sm dark:prose-invert">
13 {description}
14 </div>
15 </div>
16 );
17}
18