function CounterCard({ item }) { const ref = React.useRef(null); const [active, setActive] = React.useState(false); React.useEffect(() => { const el = ref.current; if (!el) return; const io = new IntersectionObserver((entries) => { entries.forEach((e) => { if (e.isIntersecting) { setActive(true); io.disconnect(); } }); }, { threshold: 0.4 }); io.observe(el); return () => io.disconnect(); }, []); const value = window.useCountUp(item.value, active); return (
{value}{item.suffix}
{item.label}
); } function About() { const { Tag, Button, IconButton } = window.ArnelBiscarraDesignSystem_2766cb; const data = window.SITE_DATA; const tagStyle = { cursor: 'default', borderColor: 'var(--color-gray-700)', color: 'var(--color-gray-300)' }; return (
/ ABOUT

Introduction

I'm a graphic designer, web designer, and web developer passionate about creating creative digital experiences — from brand identities to full websites to print-ready apparel layouts.

I work across graphic design, branding, web design, and web development, with a growing focus on apparel design. I enjoy solving problems as much as I enjoy the craft itself, and I'm always learning new technologies to keep my work current.

Focus Areas
{data.aboutFocus.map((t) => {t})}
Outside of Work
{data.hobbies.map((t) => {t})}
Mission

{data.aboutMission}

What Makes Me Different

{data.aboutDifferentiator}

Experience
{data.counters.map((c) => )}
Industries Worked With
{data.aboutIndustries.map((t) => {t})}
window.open('https://web.facebook.com/arnelbiscarra94', '_blank')}> window.open('https://m.me/arnelbiscarr94', '_blank')}> window.open('https://wa.me/qr/4ID4HFVXR3UKB1', '_blank')}>
); } window.About = About;