// portfolio-about.jsx — Portfolio carousel + About // Static poster/video paths — media managed via deploy, not CMS const REEL_MEDIA = [ { src: 'images/posters/ashri.jpg', video: 'videos/work/ashri.mp4' }, { src: 'images/posters/whoop-sleep.jpg', video: 'videos/work/whoop-sleep.mp4' }, { src: 'images/posters/sculpted.jpg', video: 'videos/work/sculpted.mp4' }, { src: 'images/posters/sephora.jpg', video: 'videos/work/sephora.mp4' }, { src: 'images/posters/system-pro.jpg', video: 'videos/work/system-pro.mp4' }, { src: 'images/posters/la-biosthetique.jpg', video: 'videos/work/la-biosthetique.mp4' }, { src: 'images/posters/valentines.jpg', video: 'videos/work/valentines.mp4' }, { src: 'images/posters/jude-wedding.jpg', video: 'videos/work/jude-wedding.mp4' }, { src: 'images/posters/nyx-event.jpg', video: 'videos/work/nyx-event.mp4' }, { src: 'images/posters/humantra.jpg', video: 'videos/work/humantra.mp4' }, { src: 'images/posters/rite-burj.jpg', video: 'videos/work/rite-burj.mp4' }, { src: 'images/posters/rite-taste.jpg', video: 'videos/work/rite-taste.mp4' }, { src: 'images/posters/brau.jpg', video: 'videos/work/brau.mp4' }, { src: 'images/posters/whoop-eid.jpg', video: 'videos/work/whoop-eid.mp4' }, ]; // CMS overrides title/meta/label; media paths always come from REEL_MEDIA above const CMS_PORTFOLIO = (window.CMS_DATA && window.CMS_DATA.portfolio) || [ { title: 'Ashri', meta: 'UGC · Skincare', label: 'UGC' }, { title: 'WHOOP — Sleep Campaign',meta: 'UGC · Wellness', label: 'UGC' }, { title: 'Sculpted by Aimée', meta: 'UGC · Beauty', label: 'UGC' }, { title: 'Sephora — Collection', meta: 'UGC · Campaign', label: 'UGC' }, { title: 'System Professional', meta: 'UGC · Haircare', label: 'UGC' }, { title: 'La Biosthetique', meta: 'Brand Content', label: 'Brand Content'}, { title: 'Valentines Drink', meta: 'UGC · Lifestyle', label: 'UGC' }, { title: 'Jude — Wedding', meta: 'Event Coverage', label: 'Events' }, { title: 'NYX — Event', meta: 'Event Coverage', label: 'Events' }, { title: 'Humantra — Highlight', meta: 'Event · BTS', label: 'Events' }, { title: 'Rite · Burj2Burj', meta: 'Event Coverage', label: 'Events' }, { title: 'Rite · Taste of Dubai', meta: 'Event Coverage', label: 'Events' }, { title: 'Brau — BTS', meta: 'BTS · Events', label: 'Events' }, { title: 'WHOOP — Eid Campaign', meta: 'Event · Campaign', label: 'Events' }, ]; const REELS = REEL_MEDIA.map((m, i) => Object.assign({}, m, CMS_PORTFOLIO[i] || {})); function Portfolio() { // Double the array so the CSS infinite-scroll loop is seamless const doubled = [...REELS, ...REELS]; return (
(03)

Recent work.

2024 — 2026
{doubled.map((r, i) => (
{ const v = e.currentTarget.querySelector('video'); if (v) v.play(); }} onMouseLeave={e => { const v = e.currentTarget.querySelector('video'); if (v) { v.pause(); v.currentTime = 0; } }}> {r.title} {r.video && (
))}
); } const CMS_ABOUT = (window.CMS_DATA && window.CMS_DATA.about) || {}; const ABOUT_EYEBROW = CMS_ABOUT.eyebrow || 'Dubai-Based ugc Creator'; const ABOUT_INTRO = CMS_ABOUT.intro || "Hey, I'm Lamia — a full-time content creator, and there's a good chance you've already come across some of my work while scrolling."; const ABOUT_PARS = CMS_ABOUT.paragraphs || [ "What started as filming and editing content for fun quickly turned into a career. Today, I create content for brands, document events, and help aspiring creators develop the skills and confidence to create content of their own.", "Over the years, my approach has been refined by combining high-end visuals, creative editing, and organic storytelling. I believe it's often the smallest details and creative touches that transform content from something people simply watch into something they remember.", "When I'm not on iPhone duty, you'll usually find me chasing golden hour, planning my next trip, or appreciating the little details that inspire my work.", ]; const ABOUT_STATS = CMS_ABOUT.stats || [ { value: '300+', label: 'Brands supported' }, { value: '650+', label: 'Social assets delivered' }, { value: '3+yrs', label: 'Industry Experience' }, ]; function About() { return (
(04)

About Lamia Lens.

Behind the lens
Lamia, founder & creative director
Lamia · Content Creator & Director · Dubai
{ABOUT_EYEBROW}

Hey, {ABOUT_INTRO.replace(/^Hey,?\s*/i, '')}

{ABOUT_PARS.map((p, i) =>

{p}

)}
{ABOUT_STATS.map((s, i) => (
{s.value}
{s.label}
))}
); } Object.assign(window, { Portfolio, About });