Our Team

Experienced professionals with institutional expertise, united by a shared commitment to delivering sophisticated investment solutions and exceptional client service for discerning investors worldwide.

Leadership Team

Our leadership combines decades of investment management experience with proven track records in capital protection, risk management, and institutional portfolio management.

Komey Tetteh

Founder & Portfolio Manager

Komey founded Zentra Capital in 2025 following seven years of exceptional performance managing ASIC regulated investment products. His expertise spans institutional portfolio management, sophisticated options strategies, and capital protection techniques refined through multiple market cycles.

Under his leadership from 2018-2025, Komey successfully navigated the COVID-19 market crisis and subsequent volatility, consistently delivering risk-adjusted returns while preserving capital through disciplined risk management protocols.

Expertise: Portfolio Management, Options Strategies
Experience: 7+ Years Institutional Management
Specialization: Capital Protection & Structured Products

Daniel Cheung

Portfolio Manager

Daniel brings over a decade of institutional investment experience specializing in global equities and alternative strategies. His quantitative background and systematic approach to portfolio construction complement Zentra Capital's disciplined investment methodology.

Previously managing multi-billion dollar portfolios at leading investment institutions, Daniel's expertise in derivatives trading and risk analytics strengthens our capabilities in sophisticated strategy implementation and dynamic hedging.

Education: MBA Finance, CFA Charterholder
Experience: 5+ Years Proprietary Trading
Specialization: Global Equities & Derivatives

Senior Management

Our senior team ensures operational excellence, regulatory compliance, and superior client service across all aspects of our investment management business.

Sarah Mitchell

Chief Risk Officer

Sarah oversees all risk management functions, ensuring robust risk controls and compliance with regulatory requirements. Her expertise in quantitative risk modeling and stress testing provides essential oversight for our capital protection strategies.

Education: PhD Quantitative Finance
Experience: 12+ Years Risk Management

Marcus Reynolds

Head of Operations

Marcus leads operational infrastructure, trade execution, and settlement processes. His comprehensive understanding of prime brokerage relationships and institutional operations ensures seamless execution of our investment strategies.

Education: MS Operations Research
Experience: 15+ Years Financial Operations

Victoria Chen

Director of Client Relations

Victoria manages relationships with our high-net-worth and institutional clients, ensuring superior service delivery and clear communication of investment strategies. Her expertise in family office and institutional client needs drives our client-centric approach.

Education: MBA, Certified Wealth Manager
Experience: 12+ Years Private Wealth

James Patterson

Chief Compliance Officer

James ensures adherence to all regulatory requirements and maintains the highest standards of compliance across our operations. His deep expertise in financial regulations and fiduciary responsibilities protects both the firm and our valued clients.

Education: JD Securities Law
Experience: 14+ Years Regulatory Compliance

Collaborative Excellence

Our team operates as a unified entity, leveraging diverse expertise and institutional experience to deliver superior investment outcomes. Each member brings specialized knowledge while maintaining focus on our core mission of capital protection and wealth preservation.

This collaborative approach ensures robust decision-making, comprehensive risk management, and exceptional client service across all aspects of our investment management business.

Meet With Our Team

Our Collective Expertise

  • Combined Experience: Over 60 years of institutional investment management expertise
  • Educational Background: Advanced degrees from leading universities and professional certifications
  • Regulatory Knowledge: Deep understanding of global investment regulations and compliance requirements
  • Client Focus: Proven track record serving high-net-worth individuals and institutional investors

Partner With Experienced Professionals

Our team's institutional expertise, proven track record, and unwavering commitment to client success make Zentra Capital the ideal partner for sophisticated investors seeking professional investment management and capital protection strategies.

Start a Conversation
name: form.querySelector('#name').value.trim(), email: form.querySelector('#email').value.trim(), phone: form.querySelector('#phone').value.trim(), accredited: form.querySelector('#accredited').checked }; // Validate form data if (!validateFormData(formData)) { return; } // Show loading state const originalText = submitBtn.textContent; submitBtn.textContent = 'Sending...'; submitBtn.disabled = true; try { // Send email via EmailJS await sendFactSheetEmail(formData); // Show success message showSuccessMessage(); // Close modal and reset form closeModal(); form.reset(); } catch (error) { console.error('Email sending failed:', error); showErrorMessage(); } finally { // Reset button state submitBtn.textContent = originalText; submitBtn.disabled = false; } } // Send email using EmailJS async function sendFactSheetEmail(formData) { const templateParams = { to_name: formData.name, to_email: formData.email, client_phone: formData.phone, investment_products_link: 'https://zentracapital.co/investment-products.html', current_date: new Date().toLocaleDateString(), company_name: 'Zentra Capital' }; return emailjs.send( EMAILJS_CONFIG.serviceID, EMAILJS_CONFIG.templateID, templateParams ); } // Validate form data function validateFormData(data) { if (!data.name || !data.email || !data.phone) { showAlert('Please fill in all required fields.'); return false; } const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(data.email)) { showAlert('Please enter a valid email address.'); return false; } if (!data.accredited) { showAlert('Please confirm that you are a qualified investor.'); return false; } return true; } // Show success message function showSuccessMessage() { showAlert('Thank you! Your investment fact sheet has been sent. Please check your email (and spam folder) for the materials.', 'success'); } // Show error message function showErrorMessage() { showAlert('Sorry, there was an error sending your request. Please try again or contact us directly at info@zentracapital.co', 'error'); } // Enhanced alert function function showAlert(message, type = 'info') { const existingAlert = document.querySelector('.custom-alert'); if (existingAlert) { existingAlert.remove(); } const alert = document.createElement('div'); alert.className = `custom-alert custom-alert-${type}`; alert.innerHTML = `
${message}
`; document.body.appendChild(alert); setTimeout(() => { if (alert.parentElement) { alert.remove(); } }, 6000); } // Mobile menu toggle function toggleMobileMenu() { const mobileMenu = document.getElementById('mobileMenu'); mobileMenu.classList.toggle('active'); } // Modal functions function openModal() { const modal = document.getElementById('modal'); modal.classList.add('active'); modal.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; // Focus on first input for accessibility setTimeout(() => { document.getElementById('name').focus(); }, 300); } function closeModal() { const modal = document.getElementById('modal'); modal.classList.remove('active'); modal.setAttribute('aria-hidden', 'true'); document.body.style.overflow = 'auto'; } // Intersection Observer for fade-in animations const observerOptions = { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); } }); }, observerOptions); // Observe all fade-in elements document.querySelectorAll('.fade-in').forEach(el => { observer.observe(el); }); // Header scroll effect function handleHeaderScroll() { const header = document.querySelector('.header'); if (window.scrollY > 100) { header.style.background = 'rgba(10, 10, 10, 0.95)'; } else { header.style.background = 'rgba(10, 10, 10, 0.9)'; } } // Event listeners window.addEventListener('scroll', handleHeaderScroll); window.addEventListener('load', () => { document.querySelectorAll('.fade-in').forEach(el => { observer.observe(el); }); }); // Close modal on escape key document.addEventListener('keydown', (e) => { if (e.key === 'Escape') { closeModal(); } }); // Close modal on outside click document.getElementById('modal').addEventListener('click', (e) => { if (e.target === document.getElementById('modal')) { closeModal(); } }); // Close mobile menu when clicking nav links document.querySelectorAll('.mobile-nav-link').forEach(link => { link.addEventListener('click', () => { document.getElementById('mobileMenu').classList.remove('active'); }); }); // Button interactions document.querySelectorAll('.btn-primary, .btn-cta, .cta-btn').forEach(button => { button.addEventListener('click', function() { // Add click animation this.style.transform = 'translateY(-1px) scale(0.98)'; setTimeout(() => { this.style.transform = ''; }, 150); }); });