window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-MP3XVZGVNW');
EVEN COUPLE

Listening Room

Love, family, and scale.
Now Playing

REAL ONE

Even Couple Essentials
const EC_LIBRARY = { "Even Couple Essentials": [ { title: "REAL ONE", id: "WjdpJa1hPUM" }, { title: "THE KIND OF LOVE", id: "YVDw3EspJgM" }, { title: "CRAZY LOVE", id: "INXECRl6x3M" }, { title: "BACK 2 MY FIRST LOVE", id: "sTWr9rvuN7Y" }, { title: "BOSS MODE", id: "BgtKb5gYT_0" }, { title: "DANCE WITH MY LOVER", id: "fJZqhXyj3uY" }, { title: "DON’T NEED TO PROVE YOUR LOVE", id: "sqDKZdkixLU" } ], "Volume 6": [ { title: "BOSS MODE", id: "BgtKb5gYT_0" }, { title: "KINGS PART 2", id: "BFzOjpbytK8" }, { title: "MISSING YOU", id: "c11Aas7-Pfs" }, { title: "REAL ONE", id: "WjdpJa1hPUM" }, { title: "RARE TYPE OF LOVE", id: "vObsURUomU4" }, { title: "THERE’S HOPE", id: "L-DWKiqETQc" }, { title: "THESE NIGHTS", id: "K_L47EFniTI" }, { title: "WOLVES", id: "XwnAQuAMZ-c" } ], "Volume 5": [ { title: "KINGS PT 1", id: "4pK47MGY1EI" }, { title: "WHAT GOD PUT TOGETHER", id: "huIlMD91EAI" }, { title: "ONE BULLET", id: "OzbZgVv9eJ4" }, { title: "MESMERIZE", id: "neOyHSqGOsc" }, { title: "WORK NOW, PARTY LATER", id: "e0KpzESpV-I" }, { title: "DIAMONDS IN OUR CHAIN", id: "NjQf3-X8M20" }, { title: "GETAWAY", id: "A5CdKcel2Cw" }, { title: "THESE DAYS PT 1", id: "PSIkj_lDi-E" }, { title: "LOVED", id: "JYqshg1KWB8" } ], "Volume 4": [ { title: "DRIVE", id: "CIqWx9OHlVw" }, { title: "HUNGRY", id: "U9u6DMWEtIk" }, { title: "NOW WE ON TOP", id: "26apE8fw6DQ" }, { title: "DON’T NEED TO PROVE YOUR LOVE", id: "sqDKZdkixLU" }, { title: "GOSPEL", id: "FeZpmcqadsY" }, { title: "HEAVEN’S GOT YOU", id: "sDlDIAJn988" }, { title: "DAUGHTER OF MINE", id: "nXLKNFXMLi0" }, { title: "PAINTING PORTRAITS", id: "ZaSrja8g_A4" }, { title: "HEIGHT", id: "Nbho3E2jARo" } ], "Volume 3": [ { title: "BALL", id: "hjJlij0LzVY" }, { title: "NEVER GAVE UP ON US", id: "M0qV9fCmyfc" }, { title: "THE KIND OF LOVE", id: "YVDw3EspJgM" }, { title: "WE GOT HISTORY", id: "Gn-nCR1PWXg" }, { title: "ESCAPE HORSE", id: "kwZCor3jCoo" }, { title: "DO YOU HEAR ME", id: "8fqP_irId7k" }, { title: "THESE NIGHTS", id: "P4iaTQYAP6E" }, { title: "THROWING UP OUR HANDS", id: "NAPBGmOGrCQ" } ], "Volume 2": [ { title: "BACK 2 MY FIRST LOVE", id: "sTWr9rvuN7Y" }, { title: "SOMETHING GOOD RIGHT HERE", id: "vGyxgIHdc3E" }, { title: "MARRY FOR THE MONEY", id: "GscFFgI4Vas" }, { title: "SHOW ME A WAY OUT", id: "Svig-74-2fw" }, { title: "FIRST", id: "IH-2AlUB1LA" }, { title: "NEEDING LOVE TOO", id: "GG4YyIM42lQ" }, { title: "SO BLESSED", id: "E6ZhOEfw53E" } ], "Volume 1": [ { title: "ALL WE GOT", id: "q_FzEMvPa_Q" }, { title: "GOD FLEX", id: "WUlCra2-xlY" }, { title: "HEAVEN’S LOVE", id: "_4C8j5rjKY0" }, { title: "ALL IN", id: "SS0EalbFxPE" }, { title: "I CAN’T SAVE YOU", id: "w1lfaZj4upg" }, { title: "ROMANCE DEVINE", id: "Fvsk0qYbLdQ" }, { title: "CRUISE CONTROL", id: "Io0ryYnqgQM" } ] }; let ecCurrentSection = "Even Couple Essentials"; let ecCurrentIndex = 0; let ecPlayer = null; function ecSetNowPlaying() { const track = EC_LIBRARY[ecCurrentSection][ecCurrentIndex]; document.getElementById("ec-now-title").textContent = track.title; document.getElementById("ec-now-section").textContent = ecCurrentSection; } function ecRenderTabs() { const tabsWrap = document.getElementById("ec-tabs"); tabsWrap.innerHTML = ""; Object.keys(EC_LIBRARY).forEach((section) => { const btn = document.createElement("button"); btn.className = "ec-tab" + (section === ecCurrentSection ? " active" : ""); btn.type = "button"; btn.textContent = section; btn.onclick = () => { ecCurrentSection = section; ecCurrentIndex = 0; ecRenderTabs(); ecRenderTracklist(); ecLoadCurrent(); }; tabsWrap.appendChild(btn); }); } function ecRenderTracklist() { const list = document.getElementById("ec-tracklist"); list.innerHTML = ""; EC_LIBRARY[ecCurrentSection].forEach((track, index) => { const item = document.createElement("div"); item.className = "ec-track" + (index === ecCurrentIndex ? " active" : ""); item.onclick = () => { ecCurrentIndex = index; ecRenderTracklist(); ecLoadCurrent(); }; item.innerHTML = `
${String(index + 1).padStart(2, "0")}
${track.title}
`; list.appendChild(item); }); } function ecLoadCurrent() { const track = EC_LIBRARY[ecCurrentSection][ecCurrentIndex]; ecSetNowPlaying(); if (ecPlayer && typeof ecPlayer.loadVideoById === "function") { ecPlayer.loadVideoById(track.id); } } function onYouTubeIframeAPIReady() { const firstTrack = EC_LIBRARY[ecCurrentSection][ecCurrentIndex]; ecPlayer = new YT.Player("ec-player", { videoId: firstTrack.id, playerVars: { autoplay: 0, rel: 0, modestbranding: 1 }, events: { onReady: function() { ecSetNowPlaying(); } } }); } ecRenderTabs(); ecRenderTracklist();
New Generation Family Presents

Own the Complete Even Couple Collection

The full discography, continuously updated in one place. Download the music freely, explore the journey, and if you’d like, contribute to what comes next.

Free access available. Optional contribution appreciated.

Every Release. One Place.

This is a living collection of Even Couple music. Every release is added here over time, creating one central place to experience the full catalog as it grows.

What’s Inside

  • Full Even Couple discography
  • Albums and singles
  • Continuously updated releases
  • Instant digital access
  • Direct independent distribution

Built for the Real Fans

We want real fans to have access to the music. Download it freely, connect with it, and keep it with you. This space exists so the music can live beyond platforms.

Contribute to What’s Next

If you’d like to contribute, every contribution helps fuel more music, visuals, and experiences as we continue building independently.

Access the Music

Download the complete Even Couple collection and stay connected as new releases are added over time.

EVEN COUPLE COLLECTION

EVEN COUPLE
OFFICIAL TEE

EVEN COUPLE
OFFICIAL SWEATSHIRT

EVEN COUPLE OFFICAL SWEATPANTS


ABOUT THE EVEN COUPLE

EVEN COUPLE is a husband-and-wife music duo composed of Naphtali and Sarah Prinsloo, known for their blend of soul, 90s–2000s R&B, and modern hip-hop that feels both nostalgic and new.Naphtali, born in South Africa and raised in Philly, brings rhythm, edge, and executive-level creativity. From major studio recordings to producing out of his own space, he develops not just music; but movements.Sarah is a writer, holistic thinker, and visionary artist. Her work bridges alternative medicine, global culture, and timeless storytelling; all delivered with quiet power and unmistakable class.Together, Even Couple stands on the belief that love is discipline, art is responsibility, and partnership is powerful.Together, The Even Couple stands on the belief that love is discipline, art is responsibility, and partnership is powerful. They create from lived experience, where excellence is non-negotiable. Their work reflects a respect for nostalgia, a forward-thinking vision, and a commitment to timeless artistry.Every record is built with intention, clarity, and respect for the craft, proving that longevity is earned through consistency, truth, and vision.More than musicians, The Prinsloos are brand builders and storytellers. Together, they've launched a creative empire, spanning music, film, visual arts, authorship, and entrepreneurial mentorship. Each project is intentional, each move is legacy-minded.Their mission is to empower creatives, elevate culture, and leave a mark that lasts for generations.

Brand Deals, Booking, Management: (814) 205 - 3888
OPT-IN NGF Pack (Updates, Talk to Us & More) | (302) 581-9991

Brands of Products We Have Tested: