I’m Dave, a data-driven Digital Marketing Expert based in Dubai. With over 3 years of professional experience in social media management, performance marketing, and SEO, my skills have helped grow brands and businesses in the United Arab Emirates and beyond. Want to see your numbers skyrocket? Let’s work together.

0
PROJECTS
LAUNCHED
0
YEARS OF
INDUSTRY EXPERIENCE
FREE
WEB HOSTING
PROVIDED
function animateCountUp(el, target, duration = 1200) { let start = 0; const stepTime = 20; const steps = duration / stepTime; const increment = target / steps; const counter = setInterval(() => { start += increment; if (start >= target) { el.textContent = target + '+'; clearInterval(counter); } else { el.textContent = Math.floor(start); } }, stepTime); } function scrambleTextLettersOnly(el, finalText, duration = 800) { const letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; let frame = 0; const totalFrames = duration / 30; const chars = finalText.split(""); const interval = setInterval(() => { const display = chars.map((char, i) => { if (frame < totalFrames) { return letters[Math.floor(Math.random() * letters.length)]; } else { return char; } }); el.textContent = display.join(""); frame++; if (frame > totalFrames) clearInterval(interval); }, 30); } const projectEl = document.getElementById('project-count'); const yearsEl = document.getElementById('years-count'); const freeEl = document.getElementById('free-text'); let hasAnimated = false; let inView = false; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting && !hasAnimated) { animateCountUp(projectEl, 25, 1200); animateCountUp(yearsEl, 3, 1200); scrambleTextLettersOnly(freeEl, "FREE", 900); hasAnimated = true; inView = true; } else if (!entry.isIntersecting && inView) { hasAnimated = false; inView = false; projectEl.textContent = '0'; yearsEl.textContent = '0'; freeEl.textContent = 'FREE'; } }); }, { threshold: 0.8 }); observer.observe(projectEl.parentElement);

Hey there! I'm Dave Mamon.

Your new favorite
const roles = [ "Web Designer.", "Digital Marketer.", "Videographer.", "Content Creator.", "Filmmaker." ]; const roleText = document.getElementById("roleText"); let roleIndex = 0; let charIndex = 0; let isDeleting = false; function typeEffect() { const currentRole = roles[roleIndex]; const visibleText = isDeleting ? currentRole.substring(0, charIndex--) : currentRole.substring(0, charIndex++); roleText.innerHTML = visibleText + '|'; let delay = isDeleting ? 50 : 100; if (!isDeleting && charIndex === currentRole.length + 1) { delay = 1200; isDeleting = true; } else if (isDeleting && charIndex === 0) { isDeleting = false; roleIndex = (roleIndex + 1) % roles.length; delay = 500; } setTimeout(typeEffect, delay); } typeEffect();

Over the course of my career, I've delivered results for brands and businesses all across Dubai in the realms of video production, website creation, digital marketing, and beyond.As a highly versatile full-stack creative, I provide a one-stop solution for all of your multimedia needs. Sounds like what you're looking for? Let's tell your story.

Send a Message

WHO I've WORKED WITH

I've had the privilege of collaborating with various UAE-based brands, agencies, organizations, and venues in crafting compelling stories through visual and digital media. Here are a few.

document.head.insertAdjacentHTML("beforeend", ``);