Loading amazing projects...

Featured Projects

Explore my latest web development projects, from e-commerce platforms to innovative web applications

4
Total Projects
Featured
Total Views
Technologies
Tanzania Payment Integration
Featured
Web (Postgres, REST APIs, React)
Mar 24, 2026 1200

Tanzania Payment Integration

A unified API platform integrating multiple payment gateways (Flutterwave, Selcom, DPO) with support for mobile money services like M-Pesa, Airtel …

W e b
searchInput.addEventListener('input', (e) => { const searchTerm = e.target.value.toLowerCase(); projectCards.forEach(card => { const title = card.querySelector('h3').textContent.toLowerCase(); const description = card.querySelector('p').textContent.toLowerCase(); const technology = card.dataset.technology || ''; if (title.includes(searchTerm) || description.includes(searchTerm) || technology.includes(searchTerm)) { card.style.display = 'block'; card.style.opacity = '1'; } else { card.style.display = 'none'; card.style.opacity = '0'; } }); }); }