Hello world!

1 Comment

  • A WordPress Commenter

    August 1, 2024 - 6:34 pm

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Comments are closed.

No products in the cart.

// Detect scrolling and toggle class based on scroll position window.addEventListener('scroll', function() { var masthead = document.getElementById('masthead'); if (window.scrollY >= 400) { masthead.classList.add('show-header'); } else { masthead.classList.remove('show-header'); } });