New Zealand Artist Creating Art Prints & Cards for Nature Lovers

From the birds outside my window to the wildflowers in my garden and the little things sitting on my windowsill, my NZ art prints capture the moments worth slowing down for — and bring them home with you.

Find your print
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • Shop Art Prints
  • CSS only infinite slider
  • See custom CSS for more info
  • CSS only infinite slider
  • See custom CSS for more info
  • CSS only infinite slider
  • See custom CSS for more info

Customer Favorites

Shop Most Popular

<script>
document.addEventListener('DOMContentLoaded', (event) => {
  // Give some times for Bricks to init the sliders
  setTimeout(() => {
    // Please replace rrbqsp to your Slider element ID !!NOT CSS ID!!
    const mySlider = window.bricksData?.splideInstances['70ba06'] || false
    // Please replace the button classes to suit your scenario
    const myPrevBtn = document.querySelector('.brxw-slider-arrow-prev')
    const myNextBtn = document.querySelector('.brxw-slider-arrow-next')

    if (mySlider && myPrevBtn && myNextBtn) {
      // Add click event handlers for your custom buttons
      myPrevBtn.addEventListener('click', function () {
        mySlider.go('-1') // go() function by SplideJS
      })
      myNextBtn.addEventListener('click', function () {
        mySlider.go('+1') // go() function by SplideJS
      })
    }
  }, 250)
})
</script>

Round animal collection

Round Collection

Shop now

Shop our artwork

A selection of products handmade with love

    Cards

    Shop a selection of gift cards for any occasion

    Prints

    A4 and a3 prints to brighten your home

    Rose art print

    Originals

    Looking for something unique? Shop Originals

    /* This JS calculates the max-height of the card text. Allow code execution in Bricks Settings » Custom Code and execute this code element */ 
    
    document.addEventListener('DOMContentLoaded', function () {
      // Get all the feature cards
      const featureCards = document.querySelectorAll('.brxw-feature-card-04');
    
      // Loop through all the cards and add event listeners
      featureCards.forEach(function (card) {
        const textElement = card.querySelector('.brxw-feature-card-04__text');
    
        if (textElement) {
          // Initially set max-height to 0 for the text elements
          textElement.style.maxHeight = '0';
          textElement.style.overflow = 'hidden';
    
          // Add hover event listeners
          card.addEventListener('mouseenter', function () {
            // Calculate the full height dynamically using scrollHeight
            const fullHeight = textElement.scrollHeight + 'px';
            textElement.style.maxHeight = fullHeight;
            textElement.style.marginTop = 'var(--brxw-content-gap)';
          });
    
          card.addEventListener('mouseleave', function () {
            // Reset the max-height to 0 when the hover ends
            textElement.style.maxHeight = '0';
            textElement.style.marginTop = '0';
          });
        }
      });
    });