|
| 1 | +import { useIntersectionObserver } from '@/utils/useIntersectionObserver'; |
| 2 | +import { cn } from '@/utils/utils'; |
| 3 | + |
1 | 4 | const About = () => { |
| 5 | + const { elementRef, inView } = useIntersectionObserver({ |
| 6 | + threshold: 0.9, |
| 7 | + rootMargin: '-50px', |
| 8 | + mobileThreshold: 0.8, |
| 9 | + mobileRootMargin: '-20px', |
| 10 | + }); |
| 11 | + |
2 | 12 | return ( |
3 | 13 | <div |
| 14 | + ref={elementRef} |
4 | 15 | id="about" |
5 | | - className="flex flex-col gap-4 px-4 py-6 mb-16 text-xl md:mb-20 hover:shadow-border hover:bg-background" |
| 16 | + className={cn( |
| 17 | + 'flex flex-col gap-4 px-4 py-6 mb-16 text-xl md:mb-20', |
| 18 | + inView && 'shadow-border bg-background' |
| 19 | + )} |
6 | 20 | > |
7 | 21 | <p> |
8 | | - I have experience developing web applications, from simple landing pages |
9 | | - to progressive web applications. I strive to create software that not |
10 | | - only functions efficiently under the hood, but also provides intuitive, |
11 | | - pixel-perfect user experiences. |
| 22 | + Experienced in developing web applications ranging from simple landing |
| 23 | + pages to progressive web applications. Focused on building software that |
| 24 | + is both technically efficient and delivers intuitive, pixel-perfect user |
| 25 | + experiences. |
12 | 26 | </p> |
13 | 27 | <p> |
14 | | - I love learning new and better ways to create seamless user experiences |
15 | | - with clean, efficient and scalable code. I consider work an ongoing |
16 | | - education, and I am always looking for opportunities to work with those |
17 | | - who are willing to share their knowledge as much as I want to learn. At |
18 | | - the end of the day, my primary goal is to create something beautiful |
19 | | - with people that bring out the best in me. |
| 28 | + Strong focus on continuous improvement in building seamless user |
| 29 | + experiences through clean, efficient, and scalable code. Approaches work |
| 30 | + as an ongoing learning process, with a strong emphasis on collaboration, |
| 31 | + knowledge sharing, and working closely with cross-functional teams. |
| 32 | + Motivated to contribute to high-quality, well-engineered products while |
| 33 | + growing alongside skilled professionals in a collaborative environment. |
20 | 34 | </p> |
21 | 35 | <p>At my free time I am out in the woods or swimming.</p> |
22 | 36 | </div> |
|
0 commit comments