Two generations, one mic.

From the Dugout
to the Boardroom.

Jaime & Hallie break down the game, the grind, and the life lessons that follow you off the dirt — into the classroom, the workplace, and everywhere accountability matters.

What's Your Role on the Dirt?

Pick yours — we'll send you a personal discount code for the Own the Dirt store + first access when we launch August 10th.

Your personal discount code:

---

Saved to your inbox too. Welcome to Own the Dirt — we'll see you August 10th. 🥎

Step 1 of 2 — Pick your role

What we cover

Five Pillars. One Dirt.

On the Dirt

Skills & Game Breakdowns

Mechanics, mindset, and the moments that separate good players from great ones — straight from someone still living it.

Off the Dirt

Life Beyond the Sport

Identity, mental health, and what happens when the jersey comes off — for players and the parents watching from the stands.

Own It

Accountability & Leadership

The workforce angle: how dirt-earned discipline becomes the culture every team — athletic or corporate — is chasing.

Bloopers

The Unscripted Moments

The fumbled takes, the laughing fits, the off-the-record chaos — because not everything on the dirt goes according to plan.

Two Generations

Jaime & Hallie, Unfiltered

The professional's perspective meets a player's reality. Same topic, two takes, zero filter.

The mics

Two Generations. One Dirt.

The Chief / The Veteran Voice

Jaime

Human Culture & Workforce Integrator turned media voice. Jaime brings the perspective of someone who's lived the tournament weekends, the recruiting calls, and the real-life grit that turns players into leaders — with a side career coaching workforce culture.

The Player / The Next-Gen Voice

Hallie

Still in it — competing, grinding, figuring it out. Hallie brings unfiltered honesty about what it actually feels like to navigate the pressure, the process, and the passion of competitive softball.

Read Full Bios
Coming August 10th

The Episodes Are Ready.
The Mic Drops August 10th.

Season One covers travel ball costs, recruiting reality checks, mindset under pressure, generational debates, the business of youth sports, bloopers, and a lot more. We're not telling you everything yet — but you'll want to be first when we drop.

See What's Coming →
"Accountability starts at home plate."
— Jaime

Launching August 10th.

We go live August 10, 2026. Get on the notification list so you're first when the mic drops.

Join the Launch List
// ── Hero Poll ──────────────────────────────────────────────────────────────── (function() { const CODES = { athlete: 'OWNIT-ATHLETE10', parent: 'OWNIT-PARENT10', coach: 'OWNIT-COACH10', ref: 'OWNIT-REF10', }; const HS_ENDPOINT = 'https://api.hsforms.com/submissions/v3/integration/submit/246634349/41e5b4cd-483c-417e-9c15-b42a184240c7'; const form = document.getElementById('poll-form'); const emailStep = document.getElementById('email-step'); const progress = document.getElementById('poll-progress'); const reveal = document.getElementById('discount-reveal'); const codeDisplay = document.getElementById('discount-code-display'); const submitBtn = document.getElementById('poll-submit-btn'); let selectedRole = null; if (!form) return; // Step 1: role selected → show email field form.querySelectorAll('input[name="role"]').forEach(radio => { radio.addEventListener('change', function() { selectedRole = this.value; emailStep.classList.add('visible'); progress.textContent = 'Step 2 of 2 — Drop your email for your code'; // Smooth scroll on mobile emailStep.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }); }); // Step 2: submit form.addEventListener('submit', function(e) { e.preventDefault(); const email = document.getElementById('poll-email').value; if (!email || !selectedRole) return; submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; const code = CODES[selectedRole] || 'OWNIT10'; // Submit to HubSpot Forms API const payload = { fields: [ { name: 'email', value: email }, { name: 'dirt_role', value: selectedRole }, { name: 'discount_code', value: code }, ], context: { pageUri: window.location.href, pageName: document.title } }; fetch(HS_ENDPOINT, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload) }).then(() => { form.style.display = 'none'; reveal.classList.add('visible'); codeDisplay.textContent = code; progress.textContent = "You're on the list. See you August 10th!"; }).catch(() => { // Still show the code even if API fails — don't punish the user form.style.display = 'none'; reveal.classList.add('visible'); codeDisplay.textContent = code; progress.textContent = "You're on the list. See you August 10th!"; }); }); })();
🥎 Launching August 10th

Get the Dirt
In Your Inbox

Monthly softball talk, workforce skills, bloopers, and a special note from Jaime & Hallie — plus early access and a personal discount code for the store. No spam. Just dirt.

// ── Newsletter Popup ───────────────────────────────────────────────────────── (function() { const overlay = document.getElementById('nl-overlay'); const closeBtn = document.getElementById('nl-close'); const trigger = document.getElementById('nl-trigger'); if (!overlay) return; function openPopup() { overlay.classList.add('open'); document.body.style.overflow = 'hidden'; } function closePopup() { overlay.classList.remove('open'); document.body.style.overflow = ''; } // Open on trigger click trigger && trigger.addEventListener('click', openPopup); // Close on X or overlay click closeBtn && closeBtn.addEventListener('click', closePopup); overlay.addEventListener('click', e => { if (e.target === overlay) closePopup(); }); // Close on Escape document.addEventListener('keydown', e => { if (e.key === 'Escape') closePopup(); }); // Auto-open after 18 seconds (only once per session) if (!sessionStorage.getItem('nl_shown')) { setTimeout(() => { openPopup(); sessionStorage.setItem('nl_shown', '1'); }, 18000); } })();