Hi there!

Welcome to Nolan Breen's website!

Just getting started here. More to come in 2025.

Thank you

Purus dignissim sed vitae tempus gravida dignissim venenatis urna consectetur justo cep faucibus suspendisse aliquam laoreet at quam in hendrerit et.

// Handle internal navigation links document.querySelectorAll('a[href^="#"]').forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); const targetId = this.getAttribute('href').substring(1); // Remove "#" const targetElement = document.getElementById(targetId); if (targetElement) { history.pushState(null, null, `/${targetId}`); // Update URL without reloading targetElement.scrollIntoView({ behavior: 'smooth' }); // Smooth scroll to the section } }); }); // Handle direct navigation (e.g., visiting /done directly) window.addEventListener('load', () => { const path = window.location.pathname.substring(1); // Get the path after the domain if (path) { const targetElement = document.getElementById(path); if (targetElement) { targetElement.scrollIntoView({ behavior: 'smooth' }); // Scroll to the section } } });