gathre.com Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://gathre.com/
Effective URL: https://gathre.com/
Submission: On June 13 via api from US — Scanned from CA

Form analysis 5 forms found in the DOM

POST /localization

<form method="post" action="/localization" id="annbar-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="CA">
      <country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-button">
            <span class="text-start">Canada (CAD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0" role="option" data-value="CA" aria-selected="true">
              <span class="pointer-events-none">Canada (CAD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

GET /search

<form class="main-search__form" action="/search" method="get" autocomplete="off">
  <div class="main-search__input-container">
    <input class="main-search__input" type="text" name="q" autocomplete="off" placeholder="Search our store" aria-label="Search">
    <button class="main-search__button" type="submit" aria-label="Search"><svg class="icon" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation">
        <g transform="translate(3 3)" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd">
          <circle cx="7.824" cy="7.824" r="7.824"></circle>
          <path stroke-linecap="square" d="m13.971 13.971 4.47 4.47"></path>
        </g>
      </svg></button>
  </div>
  <script src="//gathre.com/cdn/shop/t/106/assets/search-suggestions.js?v=136224079820713396391711371799" defer=""></script>
  <search-suggestions></search-suggestions>
</form>

POST /localization

<form method="post" action="/localization" id="annbar-localizationMobileNav" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="CA">
      <country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-buttonMobileNav">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-buttonMobileNav">
            <span class="text-start">Canada (CAD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0MobileNav" role="option" data-value="CA" aria-selected="true">
              <span class="pointer-events-none">Canada (CAD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <p>
    <input type="email" placeholder="Your email" class="signup-form__email" value="" name="contact[email]" aria-label="Email" required="">
  </p>
  <button class="btn btn--primary signup-form__button" type="submit">Subscribe</button>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid"></div>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

Text Content

Skip to content

Free Shipping* on orders over $175 *exclusions apply
Get early access on launches & sales: Sign Up For Texts →
Everyone’s obsessing over these best-selling styles. Shop Best Sellers

Country/Region
Canada (CAD $)
 * Canada (CAD $)

Search




Account Search Cart

 * Shop All
    * FEATURED
       * Bestsellers
       * New!
       * Sale
       * Swatches
       * Gift Cards
   
    * COLLECTIONS
       * SS24
       * FW23
       * babyletto x Gathre
       * Chalkboard Collection
       * The Milestone Collection
       * Thyme
       * World Map
       * Disney
       * Ballet
       * Dogs
       * Educational
   
    * MATS
       * Micro
       * Micro+
       * Mini
       * Mini+
       * Midi
       * Midi+
       * Maxi
       * Double Sided Mats
       * Padded Mats
       * Quilted Mats
   
    * PLAY
       * Activity Walker
       * Arc Playset
       * Arched Chalkboard
       * Baby Activity Gym
       * Balance Beam
       * Ball Pit
       * Block Playset
       * Children's Purse
       * Cubes
       * Doorway Theatre
       * Hopscotch Mat
       * Playmats
       * Padded Playmats
       * Play Balls
       * Play Gym
       * Play Gym Pillow
       * Play Gym Slide
       * Play Tent
       * Play Theatre
       * Trampoline
       * Tumbling Mat
       * Tunnel
       * Wooden Play
   
    * HOME
       * Bibs
       * Bunting
       * Caddys
       * Educational Mats
       * Floor Cushions
       * Growth Chart
       * Home Mats
       * Loungers
       * Pinboard
       * Placemats
       * Posters
       * Poufs
       * Smocks
       * Storage Bins
       * Tablecloths
       * Table Runners
       * Tapestries
       * The Capsule Bassinet
       * Tissue Box
       * Wall Tidy
   
    * HOLIDAY
       * Advent Calendar
       * Advent Cards
       * Tree Skirts

 * Play
    * CATEGORIES
       * Shop All Play
       * Playsets
       * Trampoline
       * Hopscotch Mat
       * Activity Walker
       * Chalkboard Collection
       * Play Tent
       * Playmats
       * Soft Play
       * Wooden Play
       * Theatre Collection
       * Toys
   
    * FEATURED
       * Bestsellers
       * New In
       * For Baby
       * For Toddlers
       * For Kids
   
    * BLOCK PLAYSET
    * TRAMPOLINE
    * ARC PLAYSET
    * PLAY TENT

 * Mats
    * CATEGORIES
       * Shop All Mats
       * Diaper Changing Mats
       * High Chair Mats
       * All-purpose Mats
       * Double-Sided Mats
       * Padded Mats
       * Quilted Mats
   
    * FEATURED
       * Bestsellers
       * New In
       * For Baby
       * For Playtime
       * For Families
   
    * MICRO
    * MINI
    * PADDED MICRO+
    * ACTIVITY GYM

 * Home
    * CATEGORIES
       * Shop All Home
       * Room Decor
       * Organization
       * Seating
       * Wall Decor
       * Mealtime
       * Home Mats
   
    * FEATURED
       * Bestsellers
       * New In
       * For the Nursery
       * For the Playroom
       * For the Home
   
    * POSTER
    * TABLECLOTH
    * TAPESTRIES
    * FLOOR CUSHIONS

 * New Arrivals
    * New Arrivals
       * View All
       * Arched Chalkboard Stand
       * Hopscotch Mat
       * The Capsule Bassinet
       * Baby Activity Gym
       * New in Mats
       * New in Play
       * New in Home
       * New in Naturals
   
    * NEW COLLECTIONS
       * Chalkboard Collection
       * Theatre Collection
       * SS24
       * babyletto x Gathre
       * The Milestone Collection
       * Padded Playmats
       * Ballet + Petite Dancer
       * Dogs
       * Naturals
   
    * ARCHED CHALKBOARD
    * PLAY THEATRE
    * SS24
    * THE CAPSULE BASSINET

 * The Label List
 * Sale
    * Sale
       * View All
       * Sale Mats
       * Sale Play
       * Sale Home
   
    * ALL SALE
    * SALE MATS
    * SALE PLAY
    * SALE HOME

 * Shop All
    * FEATURED
       * Bestsellers
       * New!
       * Sale
       * Swatches
       * Gift Cards
   
    * COLLECTIONS
       * SS24
       * FW23
       * babyletto x Gathre
       * Chalkboard Collection
       * The Milestone Collection
       * Thyme
       * World Map
       * Disney
       * Ballet
       * Dogs
       * Educational
   
    * MATS
       * Micro
       * Micro+
       * Mini
       * Mini+
       * Midi
       * Midi+
       * Maxi
       * Double Sided Mats
       * Padded Mats
       * Quilted Mats
   
    * PLAY
       * Activity Walker
       * Arc Playset
       * Arched Chalkboard
       * Baby Activity Gym
       * Balance Beam
       * Ball Pit
       * Block Playset
       * Children's Purse
       * Cubes
       * Doorway Theatre
       * Hopscotch Mat
       * Playmats
       * Padded Playmats
       * Play Balls
       * Play Gym
       * Play Gym Pillow
       * Play Gym Slide
       * Play Tent
       * Play Theatre
       * Trampoline
       * Tumbling Mat
       * Tunnel
       * Wooden Play
   
    * HOME
       * Bibs
       * Bunting
       * Caddys
       * Educational Mats
       * Floor Cushions
       * Growth Chart
       * Home Mats
       * Loungers
       * Pinboard
       * Placemats
       * Posters
       * Poufs
       * Smocks
       * Storage Bins
       * Tablecloths
       * Table Runners
       * Tapestries
       * The Capsule Bassinet
       * Tissue Box
       * Wall Tidy
   
    * HOLIDAY
       * Advent Calendar
       * Advent Cards
       * Tree Skirts

 * Play
    * CATEGORIES
       * Shop All Play
       * Playsets
       * Trampoline
       * Hopscotch Mat
       * Activity Walker
       * Chalkboard Collection
       * Play Tent
       * Playmats
       * Soft Play
       * Wooden Play
       * Theatre Collection
       * Toys
   
    * FEATURED
       * Bestsellers
       * New In
       * For Baby
       * For Toddlers
       * For Kids
   
    * BLOCK PLAYSET
      TRAMPOLINE
      ARC PLAYSET
      PLAY TENT

 * Mats
    * CATEGORIES
       * Shop All Mats
       * Diaper Changing Mats
       * High Chair Mats
       * All-purpose Mats
       * Double-Sided Mats
       * Padded Mats
       * Quilted Mats
   
    * FEATURED
       * Bestsellers
       * New In
       * For Baby
       * For Playtime
       * For Families
   
    * MICRO
      MINI
      PADDED MICRO+
      ACTIVITY GYM

 * Home
    * CATEGORIES
       * Shop All Home
       * Room Decor
       * Organization
       * Seating
       * Wall Decor
       * Mealtime
       * Home Mats
   
    * FEATURED
       * Bestsellers
       * New In
       * For the Nursery
       * For the Playroom
       * For the Home
   
    * POSTER
      TABLECLOTH
      TAPESTRIES
      FLOOR CUSHIONS

 * New Arrivals
    * New Arrivals
       * View All
       * Arched Chalkboard Stand
       * Hopscotch Mat
       * The Capsule Bassinet
       * Baby Activity Gym
       * New in Mats
       * New in Play
       * New in Home
       * New in Naturals
   
    * NEW COLLECTIONS
       * Chalkboard Collection
       * Theatre Collection
       * SS24
       * babyletto x Gathre
       * The Milestone Collection
       * Padded Playmats
       * Ballet + Petite Dancer
       * Dogs
       * Naturals
   
    * ARCHED CHALKBOARD
      PLAY THEATRE
      SS24
      THE CAPSULE BASSINET

 * The Label List
 * Sale
    * Sale
       * View All
       * Sale Mats
       * Sale Play
       * Sale Home
   
    * ALL SALE
      SALE MATS
      SALE PLAY
      SALE HOME

Country/Region
Canada (CAD $)
 * Canada (CAD $)


MAKE HOME THEIR FAVORITE PLAYGROUND

SHOP PLAY ESSENTIALS
Free Shipping on orders over $175*
Lifetime Warranty

60 Day Guarantee

60 Day Guarantee & Lifetime Warranty


PRETTIER, EASIER

Modern goods that make your everyday prettier and easier — so you can make space
for the worthwhile.

ABOUT US


FOR BABY

SHOP NOW


FOR TODDLERS

SHOP NOW


FOR KIDS

SHOP NOW


FOR YOU

SHOP NOW


PREVIOUS NEW ARRIVALS NEXT

View all

Quick buy
Arched Chalkboard
$222.00
Beech
New arrival
Quick buy
Play Theatre
$245.00
Cafe Stripe

Quick buy
Wooden Letters
$147.00
Birch
New arrival
Quick buy
Doorway Theatre
$91.00
Cafe Stripe
15% off
Quick buy
Large Home Mat
From $118.00 $139.00
Sale
Rainbow Hopscotch Hopscotch Thyme (on sale)

Quick buy
Baby Activity Gym
$180.00
Ivory

Quick buy
Trampoline
$194.00
Ivory

Quick buy
Activity Walker
$166.00
Camel

Quick buy
Balance Beam
$125.00
Ivory Millet Camel

Quick buy
Play Gym
$278.00
Beech
14% off
Quick buy
Mini
From $66.00 $77.00
Sale
Amalfi Créme Tassel Rook Ballet Basics Thyme Petite Dancer Cafe Stripe Ivory
Ivory Scallop Millet Untanned Scallop Camel Raven Belle Beau Alphabet Animal
Alphabet Numbers Stone Stripe Menagerie Fleurs Blanc (on sale) Chiffon (on sale)
Sienna (on sale) Ginger (on sale) Nightfall (on sale) Ember (on sale) Heron (on
sale) Blanc Scallop (on sale) Fog (on sale) Constellation - Northern Hemisphere
(on sale) Constellation - Southern Hemisphere (on sale) Colors (on sale) Pebble
(on sale) Mickey Mouse (on sale) Pencil Stripe (on sale) Rainbow (on sale) Tiny
Rainbow (on sale) ABC (on sale) Fruity (on sale) Stars (on sale) Cantata (on
sale) ASL (on sale) Blanc Dash (on sale) Camel Dash (on sale) Petal (on sale)
Petal Scallop (on sale) + 45 more
15% off
Quick buy
Midi
From $101.00 $119.00
Sale
Amalfi Créme Tassel Rook Milestones Thyme Petite Dancer Cafe Stripe Ivory Ivory
Scallop Millet Untanned Scallop (on sale) Camel Raven Stone Stripe World Map
Menagerie Commons Untanned (on sale) Tannin (on sale) Ember (on sale) Fog (on
sale) Nightfall (on sale) Ginger (on sale) Pomelo (on sale) Constellation -
Northern Hemisphere (on sale) Constellation - Southern Hemisphere (on sale)
Pebble (on sale) Mickey Mouse (on sale) Pencil Stripe (on sale) Tiny Wings (on
sale) Terra (on sale) Camel Dash (on sale) + 30 more





THE MATS THAT STARTED IT ALL

LEARN MORE


Previous Next
Arched Chalkboard + Stand Bundle
$283.00 $328.00
Sale
Letters + Numbers Bundle
$183.00 $215.00
Sale


SHOP THE SETS

These products go so perfectly together, we packaged them up with some added
savings.

 * Arched Chalkboard + Stand Bundle
   $283.00 $328.00
   Sale
 * Letters + Numbers Bundle
   $183.00 $215.00
   Sale

10,000+ 5-STAR REVIEWS
10,000+ 5-STAR REVIEWS

> Beautiful tablecloth. Camel is perfect for any time of the year!

— Maria

10,000+ 5-STAR REVIEWS

> This is the BEST!!!! Cannot say enough good things about the quality and how
> beautiful it is.

— Madeline

10,000+ 5-STAR REVIEWS

> LOVE our Padded Micro+! It makes the best changing mat and fits perfectly on
> our changing table!

— Tibi

10,000+ 5-STAR REVIEWS

> The Block Playset is truly one of the best toys my daughter has ever owned.

— Karina

10,000+ 5-STAR REVIEWS

> The ball pit is so fun! I love that it looks amazing and is soft.

— Saydi

Previous Next


GET INSPIRED


❮ ❯
HELP
 * Contact
 * FAQ
 * Shipping + Handling
 * Exchanges + Returns
 * My Account
 * The Gathre Guarantee
 * Privacy Policy
 * Cookie Policy
 * Terms of Service
 * Accessibility Statement
 * Wholesale Login

COMPANY
 * About Us
 * Blog
 * Careers
 * Loyalty
 * Store Locator
 * Become a Stockist
 * Affiliate Program

SHOP
 * Shop All
 * Play
 * Mats
 * Home
 * New Arrivals
 * The Label List
 * Sale

THE PLACE TO BE

Get in on all things Gathre — sales, exclusive collections and early access to
evvvvery new product launch.



Subscribe
 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Pinterest

 * Contact
 * FAQ
 * Shipping & Handling
 * My Account
 * Privacy Policy
 * Cookie Policy
 * Terms of Service
 * Accessibility Statement
 * Wholesale Login

© 2024 Gathre.

Your cart
Close




Checkout
Close
Your cart is empty
Continue shopping

Added to your Cart








My Wishlist0

gathre

Any way you look at it, the Play Gym takes indoor play to new heights. 😍 Made
for climbing, rocking, building, sliding, and letting their imaginations soar…
🦅 It’s swiftly becoming a staple in our own homes. Which details do you love
most?? We’ll never stop swooning over the pretty beech wood. 🤤
June 11
✕

gathre

Oh hey, it’s the @babyletto x Gathre Capsule Bassinet out in the wild. 🤩 Aren’t
these just the sweetest pictures?? Our obsession with this product is too real.
Giving us all the feels, all the time. 🥰
June 8
✕

gathre

Swipe 👉 for 3 best-selling play items you NEED for summer. The Arc Playset,
Play Tent, and Play Balls are staples we swear by for active toddlers and
imaginative kiddos. Endless possibilities and heirloom quality make for the
greatest play things around — ensuring the fun and games, go on and on and on
(and on). Who else is ready to keep the kids entertained all day?? 🙋‍♀️
June 6
✕

gathre

The highchair spot has never looked so good! 😍 A 5-star dining experience —
here are 5 reasons you need a Mini Mat in your life… ◦ Catches all the extras ◦
Wipes messes away easily ◦ Acts like a tarp, looks like decor ◦ Protects your
rugs (+ your sanity) ◦ Transitions to a tummy-time mat, a craft mat, or
on-the-go travel spot for toddlers and kids alike! Got one at home? What else
would you add to our list?? ✍️
June 4
✕

gathre

A sweet and safe space to be. ✨ We started Gathre with babies still nursing and
the demands of motherhood at an all-time-high. Mats were a product we knew we
needed and dreamed of for our families. Things have surely evolved a bit since
then (with expanded product lines and whatnot), but the inspiration for all we
do has always stemmed from our roles as mothers. The greatest title we’ve ever
held. So every time you sit on a mat, we hope you feel surrounded by this
community we’ve created — we’re in it together. ❥
June 1
✕

gathre

Looking for a way to introduce littles to the big world around them? 🌏✨ Allow
our community to map it out for you… “We ordered the World Map in Mini+ and have
absolutely loved it. I am from Australia and have loved showing my 2-year-old
son where we are in the US in relation to all my family that live in Australia.
He loves pointing out where Gramsie and the rest of our extended family live. It
has been the perfect addition to our playroom.” – Annie G.
May 30
✕

gathre

Start of summer energy = clean playrooms + high spirits. Let’s see how we feel
in August 😉 Trampoline here to help your kids burn off some steam in the hot
days ahead. Never met a prettier trampoline and your home deserves the best!
Have you shopped yours already?
May 29
✕

gathre

Three’s not a crowd here. 🐶🐶👶🏼 Guessing the toddler isn’t the only one
enjoying the Padded Mat. 😉 This Midi+ size mat is a bestseller. It’s spacious
for a few (preschoolers, parents, or pups), big enough for puzzles or legos,
doubles as a sleepover mat, and lets toddling babes take their first steps with
cushion. Any padded mat fans in the audience?
May 25
✕

gathre

Mini
SHOP NOW
A playroom kitchen that’s cuter than our own kitchen! The Fleurs Mini completing
that farmers market look. Our kids have just started naming different flowers
this spring thanks to this Fleurs hanging in their room. Art that educates and
doubles as a playmat? Yes porfa. So tell us, are you headed to the farmers
market this summer? 📷: @naturfaden
May 23
✕

gathre

Large Home Mat
SHOP NOW
We think this one deserves its time in the spotlight. 🌟 The Rainbow Hopscotch
is your new rainy-day best friend. 🌈 A bright spot in any space — ready to
entertain and get their energy out. It’s loved for its versatility and works for
any age! What’s your favorite thing about this colorful cutie?
May 18
✕

gathre

Trampoline
SHOP NOW
A spot to jump, play, and take a well-deserved break. Our trampolines are open
for pre-order after recently restocking and selling out — AGAIN! These sell out
fast, friends, so hop to it! 🏃‍♀️
May 16
✕

gathre

Doorway Theatre
SHOP NOW
Enter a world of imagination. 💭✨ The Doorway Theatre keeps the possibilities
wiiiiide open to dream, play, and perform. Plus, it’s perfect for smaller spaces
where you need an easy-to-put-away option. Set it up for showtime then take it
down until next time. We’d love to hear about the sweet performances your kids
have been putting on with this one — let us know in the comments. 🫶
May 14
✕

gathre

Maxi
SHOP NOW
Happy Mother’s Day. Here’s to you, over the years, loving, holding, teaching,
pausing, and breathing it all in. It may not seem like much, but if you ask us,
it’s the greatest gift. ♡ We’re cheering you on, today and always, in this most
important work. The kind that shapes and forms your very soul — and theirs too.
After all, our mission is to make space for the worthwhile. The moments in these
photos…that is it, right there! The worthwhile we hope to help create alongside
you. Now, okay we’re probably rambling (we can’t help ourselves! 🥰)… But we’ll
end on this note: Through all of life’s moments, big and small, a garden has
surely grown — flourished, blossomed, and thrived, because of you. Thank you for
tending to it. 🌱
May 11
✕

gathre

Large Home Mat
SHOP NOW
When ya need a little break from hopscotching — but also gotta stay nearby in
case of a second wind. 😊 Do your kids love this one as much as ours do?? We
find them pulling it out allll the time when their friends are over. We’re so
here for the childhood nostalgia — reminds us of when we were little. 🥹🫶✨
May 11
✕

gathre

Padded Mini
SHOP NOW
Spotted: a Padded Mat + Ball Pit — the ultimate duo for your crawlers and
soon-to-be-walkers. A soft, fun spot for them, and a relaxing moment for you. 🤝
After all, we’ll take all the quiet mornings we can get over here!
May 9
✕

gathre

Mother’s Day Giveaway! It’s time to nominate a mom, friend, sister, grandma…
Someone who does it all, the quiet work of motherhood, and doesn’t always get
the recognition. Who comes to mind?? We’re selecting 15 lucky mother figures to
win $100 shop credit each! Here’s how to enter yours to win: ❥ Like this post. ❥
Tag a mom who deserves to be recognized. ❥ In your comment, let us know why.
*We’ll randomly select 15 mothers to win $100 shop credit. Winners will be
announced Friday, 5/10, at 6pm MT on stories.
May 8
✕

gathre

Padded Mini
SHOP NOW
This weekend’s plans: a cozy spot and a good read. 📚😌✨ Soft and spacious, the
Padded Mat has your littlest bookworms covered. What are your kiddos reading
these days?? We’re on the hunt for some new recommendations. 👀
May 4
✕

gathre

Padded Micro+
SHOP NOW
Small Caddy
SHOP NOW
Don’t mind us zooming in on the cutest baby rolls, toes, and oh! our Caddy, too.
😍 This newborn staple is our SAVING GRACE to keep all-the-things collected and
nearby. Trust us, there’s not much it can’t hold. What do you use yours for??
May 2
✕

gathre

Baby Activity Gym
SHOP NOW
All smiles for this sweet angel AND our latest restock. 🥰🥳 The Baby Activity
Gym is back (!) with soooo many details to love. A soft, quilted mat, detachable
bars, and hand-knit rattle toys…just to name a few. Have you ordered yours yet?
April 17
✕

gathre

Padded Midi+
SHOP NOW
Be light on your feet… Our Baby Activity Gym has just been restocked! Who cannot
wait to get in on this round?! 😍 We’ve sure got a soft spot for both of the
Gathre goods here (the Activity Gym + Padded Mat) — aka the makings of a super
cozy corner of home. 🏠🤍
April 16
✕

gathre

Block Playset
SHOP NOW
Stack, slide, climb, and build — their own whole new set of shapes, for building
a whole new world. ☀️ It never gets old seeing your littles explore our favorite
play piece. Indoor playground, pretend spaceship, or cozy fort… we’ve seen it
all with this set and the imaginations on your kids never ceases to amaze us.
What fun setups have your littles made with the Block Playset? □▲○
April 13
✕

gathre

The Capsule Bassinet
SHOP NOW
This one’s for the new dads out there. ♡ Supporting, rocking, and taking the
middle-of-the-night shift when we simply cannot. We see you, appreciate you —
and love that you’re enjoying the Capsule Bassinet, too.
April 11
✕

gathre

Mini+
SHOP NOW
A summer of star-spangled celebrations is rightttt around the corner. 🇺🇸⭐️ Cue
our USA Mats in a variety of shapes and sizes — for patriotic picnics, wall
decor, and, of course, memorizing the capitals of all fifty-nifty states at the
table. Are your littles as fascinated by maps as ours are?? Sing it with us now!
Alabama, Alaska, Arizona… 🎶🫡
April 9
✕

gathre

Padded Micro+
SHOP NOW
Pouf
SHOP NOW
Right here, the best place to be. ✨ Gathre was born in the trenches of our very
own young motherhood days — longing for products that are as beautiful as they
are functional, while creating the space for moments just like this one. From
mats to poufs and everything in between, we hope these pieces help make your
life a little prettier and easier too. 🫶
April 6
✕

gathre

Padded Mini
SHOP NOW
Shining the light on SS24. ✨ We love creating seasonal collections, so you can
have a whole new line of hues to choose from and bring into your home. Wanna
guess which SS24 color has become a fan-favorite?? We’ll reveal the winner in 3,
2, 1… You guessed it, Amalfi! (pictured here in the Padded Mini Mat!) What did
you snag from SS24??
April 5
✕

gathre

Padded Midi Circle
SHOP NOW
Making space to grow. ♡ Our Padded Mini Circle is a bestseller in our padded
collection — and it’s easy to see why. Practically speaking, it’s a beauty in
any space with cushy memory foam and soft, wipeable vegan leather. But more
importantly, it’s a place for you and baby to connect. Especially when they’re
this little and you’re both growing together in these new roles and your
relationship — there’s just so much to discover. From tickles to giggles and
your very first inside jokes, this time is all about the two of you. It doesn’t
get much sweeter than that.
April 4
✕

gathre

Midi
SHOP NOW
Somebody transport us here, please. 🙏 When it comes to beach hangs, these are
our top 5 reasons to bring a mat: ◦ Sand shakes off easily (aka won’t end up in
your car) ◦ Spilled snacks or misc. messes wipe clean ◦ Waterproof = dry bums ◦
Plenty of size options to suit your crew ◦ Simple to fold up and transport After
all, our mission has always been to make life prettier and easier — putting the
focus back on what matters most: time together. Now we gotta know, where are you
taking the mat this summer??
April 3
✕

gathre

Maxi
SHOP NOW
Here comes the sun! ☀️ Our summer edit is up on the site — aka a collection of
our favorites for warmer weather. From backyard hangs and on-the-go picnics to
beach days and more… These Gathre staples are our seasonal must-haves. 😎 What’s
on your bucket list this summer??
April 2
✕

gathre

Floor Cushion
SHOP NOW
Everyone’s got a soft spot for these cozy cushions. 🥰 They’re loved by both our
smallest babies and growing kids. PLUS, our friends, husbands…even our doggos!
🐶🤍 Simply, these know how to please a crowd. That’s why we always keep several
on hand in our homes — providing a little extra seating at a moment’s notice.
Who in your house loves them the most??
April 1
✕

gathre

Tablecloth
SHOP NOW
We’re setting the table, running to TJ’s, dying eggs, + making 🥕 cake for
Easter tomorrow. Truthfully this is the holiday that leaves words choking in our
throats during prayers. We believe He lives and in the end nothing brings us
more peace than that. All that is unfair about life will be made right because
of Him. Happy Easter to you and yours. xx, mare + jess
March 30
✕