gathre.com Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://gathre.com/
Effective URL: https://gathre.com/
Submission: On April 25 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
The Big Little Sale is here! Shop 24% off sitewide. No code needed. See FAQs
here.
Free Shipping* on orders over $175 *exclusions apply
New: The Theatre Collection
Get early access on launches & sales: Sign Up For Texts →
Back in Stock: Activity Walkers
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 Slide
       * Play Tent
       * Play Theatre
       * Trampoline
       * Tumbling Mat
       * Tunnel
   
    * 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
       * Gift Wrap
       * 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

 * 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 Slide
       * Play Tent
       * Play Theatre
       * Trampoline
       * Tumbling Mat
       * Tunnel
   
    * 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
       * Gift Wrap
       * 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

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

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


THE BIG LITTLE SALE IS HERE

Shop 24% off sitewide, including best-sellers.

Let’s go
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
$224.00
Beech
New arrival
Quick buy
Play Theatre
$246.00
Cafe Stripe

Quick buy
Wooden Letters
$148.00
Birch
New arrival
Quick buy
Doorway Theatre
$92.00
Cafe Stripe
15% off
Quick buy
Large Home Mat
From $119.00 $140.00
Sale
Rainbow Hopscotch Hopscotch Blanc (on sale) Fog (on sale) Camel (on sale) Soleil
(on sale) + 3 more

Quick buy
Baby Activity Gym
$182.00
Ivory

Quick buy
Trampoline
$196.00
Ivory

Quick buy
Activity Walker
$168.00
Camel

Quick buy
Balance Beam
$126.00
Ivory Millet Camel

Quick buy
Play Gym
$280.00
Sold out
Beech
15% off
Quick buy
Mini
From $66.00 $78.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) Untanned (on
sale) Pewter (on sale) Ochre (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) Cursive (on sale) Fruity (on sale) Stars (on sale) Cantata (on sale)
ASL (on sale) Blanc Dash (on sale) Peony (on sale) Camel Dash (on sale) Bloom
(on sale) + 49 more
15% off
Quick buy
Midi
From $102.00 $120.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 Blanc Scallop (on sale) Untanned (on sale) Tannin (on sale)
Ochre (on sale) Terra (on sale) Ember (on sale) Nightfall (on sale) Ginger (on
sale) Pewter (on sale) Dawn (on sale) Pomelo (on sale) Constellation - Northern
Hemisphere (on sale) Constellation - Southern Hemisphere (on sale) Pebble (on
sale) Bloom (on sale) Mickey Mouse (on sale) Pencil Stripe (on sale) Tiny Wings
(on sale) + 33 more



THE MATS THAT STARTED IT ALL

LEARN MORE


Previous Next
Arched Chalkboard + Stand Bundle
$285.00 $331.00
Sale
Letters + Numbers Bundle
$184.00 $217.00
Sale


SHOP THE SETS

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

 * Arched Chalkboard + Stand Bundle
   $285.00 $331.00
   Sale
 * Letters + Numbers Bundle
   $184.00 $217.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
 * Big Little Sale FAQ
 * Shipping + Handling
 * Exchanges + Returns
 * My Account
 * The Gathre Guarantee
 * Privacy Policy
 * Cookie Policy
 * Terms of Service
 * Accessibility Statement

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

SHOP
 * Shop All
 * Play
 * Mats
 * Home
 * New Arrivals
 * 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

 * Search
 * Contact Us
 * Shipping & Handling
 * Press
 * Work With Us

© 2024 Gathre.
Your cart
Close



You may like

 * Wooden Letters
   $148.00
   Birch
 * 17% off
   Micro
   From $30.00 $36.00
   Sale
   Amalfi Créme Tassel Rook Thyme Ballet Basics Petite Dancer Cafe Stripe Ivory
   Ivory Scallop Untanned Scallop Millet Camel Raven Belle Beau Dogs Emotions
   World Map Numbers USA Map Canada Map Fleurs Block Menagerie National Parks
   Map Animal Alphabet Alphabet Stone Stripe Petal Untanned (on sale) Fern (on
   sale) Blanc (on sale) Pewter (on sale) Fog (on sale) Ember (on sale) Heron
   (on sale) Nightfall (on sale) Sienna (on sale) Ginger (on sale) Pebble (on
   sale) Mickey Mouse (on sale) ABC (on sale) Pencil Stripe (on sale) Rainbow
   (on sale) Cursive (on sale) Tiny Rainbow (on sale) Stars (on sale) ASL (on
   sale) Cantata (on sale) Camel Dash (on sale) Blanc Dash (on sale) Peony (on
   sale) Tannin (on sale) Chiffon (on sale) + 52 more
 * New arrival
   Play Theatre
   $246.00
   Cafe Stripe
 * 15% off
   Small Caddy
   From $95.00 $112.00
   Sale
   Ivory Untanned (on sale) Millet Camel + 1 more
 * 15% off
   Poster
   From $78.00 $92.00
   Sale
   Ballet Basics Dogs World Map Fleurs Emotions Numbers Colors Animal Alphabet
   Alphabet Solar System (on sale) Conversion Chart (on sale) Hundred Acre Wood
   (on sale) Nativity (on sale) Cursive (on sale) + 11 more
 * Ball Pit
   From $162.00
   Amalfi Thyme Ivory Parchment Millet Camel Cafe Stripe + 4 more
 * 15% off
   Tunnel
   From $119.00 $140.00
   Sale
   Amalfi Thyme Camel Cafe Stripe Parchment Ivory Millet Untanned (on sale)
   Ochre (on sale) Mickey Mouse (on sale) + 7 more
 * Pinboard
   $140.00
   Camel Ivory Millet
 * Play Gym
   $280.00
   Sold out
   Beech

Checkout
Close
Your cart is empty
Continue shopping

Added to your Cart



gathre

Our Big Little Sale is live! 24% off sitewide* no exclusions thru 4.30. It’s a
big sale for the little people in your life and only comes around twice a year!
You won’t see this steep of a discount again until Black Friday, so hurry quick.
And no exclusions is kind of a first for us. We figured why not go big? Do you
have questions for us? Drop them here and we’ll be sure to answer them for you.
*Code auto applied at checkout. Cannot be combined with other offers. Does not
apply to gift cards + bundles.
April 23 • View on Instagram
✕

gathre

Coming soon: The BIG Little Sale! And, how FUN is this…👉2024 is bringing you
24% off sitewide (!!!). No exclusions. 🎉🎉🎉 Mark your calendars: 🗓️ 4/23 –
4/30 🗓️ What are you looking forward to snagging on sale?? Psst, yes, this is
our big semi-annual sale (with a snazzy new name)! 😍
April 19 • View on Instagram
✕

gathre

Baby Activity GymSHOP 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 • View on Instagram
✕

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 • View on Instagram
✕

gathre

Block PlaysetSHOP 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 • View on Instagram
✕

gathre

The Capsule BassinetSHOP 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 • View on Instagram
✕

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 • View on Instagram
✕

gathre

Padded Micro+SHOP NOW
PoufSHOP 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 • View on Instagram
✕

gathre

Padded MiniSHOP 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 • View on Instagram
✕

gathre

Padded Midi CircleSHOP 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 • View on Instagram
✕

gathre

MidiSHOP 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 • View on Instagram
✕

gathre

MaxiSHOP 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 • View on Instagram
✕

gathre

Floor CushionSHOP 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 • View on Instagram
✕

gathre

TableclothSHOP 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 • View on Instagram
✕

gathre

MidiSHOP NOW
Spring is in full swing which can only mean…summer is right around the corner!
☀️ Cue the sunshine, picnics, park outings, and adventures. Ready for wherever
these days take ya — our mat collection was born out of the need for a wipeable,
compact surface that we could easily tote around. Thankfully we found a material
that checked all those boxes and was beautiful too. 😍 SS24 recently dropped
with plenty of fresh colors and tones for the season. We hope you’re enjoying
them at home. Tell us which mat size your family loves most!
March 29 • View on Instagram
✕

gathre

The Capsule BassinetSHOP NOW
Psst, our collaboration with @babyletto just got a name upgrade — now
affectionately known as the Capsule Bassinet. ✨ We have absolutely loved your
positive response to this piece and hope it becomes an heirloom staple in your
home — for many years (and babies) to come. 🥰
March 28 • View on Instagram
✕

gathre

LoungerSHOP NOW
L is for Lounger (how could we resist? 😂). This product is consistently voted
#1 fave by the many children in our lives. 🏆 If we had to guess whyyyy it
always tops their lists, it’d be the joy of having a little spot of their own to
lounge and lay. 🥰 And we don’t blame them! We, too, love sneaking a moment, or
a few to ourselves, escaping the busyness that can consume our schedules. (Shh,
don’t tell our kids we’re using their Loungers...🤫) Do you have one of these at
home?? If so, who uses it more: you or your littles? 😉
March 27 • View on Instagram
✕

gathre

Floor CushionSHOP NOW
Using a Floor Cushion 101. Grab a cushion, check ✔️. Bring a book, check ✔️.
Find some pretty light by a window to get some sunshine in while you relax,
check ✔️. Yep, this little guy’s got it all in order! We just might need to snag
the floor cushions from our kiddos this morning, so we can catch up on some R&R
ourselves. 💆‍♀️
March 26 • View on Instagram
✕

gathre

CubesSHOP NOW
Stepping up our play game with these new SS24 cubes. 😎 We’re talking towers,
floor is lava, climbing, tumbling…the list goes on. And you get to join in on
the fun too! With pairings like Rook + Tassel (seen here!) and Amalfi + Camel,
let yourself get creative with some pattern play or color coordination — and
liven up your space! 🙌 And, who’s counting? We say there’s no limit to the
number of cubes you can have at home. 😉
March 25 • View on Instagram
✕

gathre

📢 Heyyyyy Utah!!! 📢 We are having an in-person warehouse sale next week 🙀
(!!) March 28th and 29th! Come shop hundreds of Gathre goodies including
samples, one-of-a-kind products, and discounted items. Sign up for VIP access
using the link in our bio if you want first dibs. 🏃🏽‍♀️ Have questions? Let us
know! We cannot wait to see you there! ✨ Mark your calendars 📅 March 28th
12-1:30pm — VIP access *spots are limited, sign up today! 5-7pm — general
admission (no ticket necessary!) March 29th 10-3pm — general admission (no
ticket necessary!) Gathre Warehouse 2575 W 400 N Suite 100A Lindon, UT 84042
March 23 • View on Instagram
✕

gathre

Mini Floor CushionSHOP NOW
Any age, any stage, allll the uses — our floor cushions are, quite simply, a
perfect fit. 🙌 Turning anywhere and everywhere into the best seat in the house.
Also, can we just say, it’s so fun seeing this new SS24 print out in the wild.
😍 Who else is loving Rook at home?
March 23 • View on Instagram
✕

gathre

Padded Midi+SHOP NOW
A little bit softer now… We all know what it can be like with rambunctious
toddlers running around the house (tambourines in hand 🤪). Cue: our
best-selling Padded Mats, the easiest way to soften their stance — and
inevitable crash landings. They’ll love the place to party + cushioned feel, and
you’ll love the peace of mind + lovely hues. 😌 Okay, POP QUIZ! Can you name
which SS24 color this one is??
March 22 • View on Instagram
✕

gathre

Arc PlaysetSHOP NOW
It’s #worlddownsyndromeday and this buddy could not be more perfect. Today is a
good reminder to always spread love in your wake. You never know who may need
it. 🤍
March 21 • View on Instagram
✕

gathre

Wooden LettersSHOP NOW
Swipe to check out our new-and-improved Wooden Letters and Numbers! 😍 It’s been
a hot minute since we’ve had these on the site. Why? Well, we’ve been hard at
work giving them an upgrade, of course. 🤓🛠️ Thanks to requests from wonderful
customers like yourselves, we’ve revamped both their manufacturing and
functionality to be even better. With the same lovely wood on the front and new
magnetic stripes on the back — they’ll last longer and are extra safe for
younger kids who want to give them a try. We can now recommend ‘em for children
6 months and up!* 🙌 * Please note: If you have a set that was made prior to
2024, those are still recommended for ages 3 and up! You can always refer to the
packaging before use to double-check.
March 21 • View on Instagram
✕

gathre

Wooden LettersSHOP NOW
Anyone else grow up with magnetic shapes and letters on the fridge?? You know
the ones. 🥹🫶 Consider our Wooden Letter Sets a modern, Gathre take on that
childhood nostalgia. ✨ Here are 5 letter games we loved as kids — that your
family can enjoy now, too. 1️⃣ The Great Scavenger Hunt: Scatter allll the
pieces on the floor, and take turns finding items around the house that begin
with each letter. 2️⃣ Soup Time: Stir the letters in a large pot, aka “soup.”
Then, have them scoop up pieces with measuring cups, naming each one. 3️⃣ ABC
Song Sprint: Someone sings the Alphabet song, while the other player puts the
letters in order as quickly as they can. The mission: finish before the end of
the song. 4️⃣ Write It Out: Take a shallow box or container, and fill it with
salt, sand, or something similar. Then, let your kids use a stick to practice
writing, using the toy letters as a reference. 5️⃣ Sound It Out: Place letters
on display one at a time, and have your kids try sounding them out. As they
progress, they can try naming words that start with the corresponding letter. 🎶
ABC, having fun with our Wooden Letters is as easy as 123… 🎶 What are some
other go-to letter games you’ve tried at home??
March 20 • View on Instagram
✕

gathre

Arched ChalkboardSHOP NOW
Ahem, eyes on the board…👀 Because Arched Chalkboard Accessories are here! For a
limited time, you can pre-order the whole set, or the piece at the top of your
wishlist. What’s included? Allow us to break it all down for you… 🖤 The Arched
Chalkboard: Part chalkboard, part whiteboard, and all magnetic — it’s the
perfect creative companion. 🖤 The Arched Chalkboard Stand: A real supportive
pal — meant for safely holding the chalkboard upright and making it easy to flip
between the two sides. 🖤 Wooden Letters + Numbers, but updated! New and
improved with a magnetic strip on the back for improved durability. Because why
not make learning a little lovelier? Alright, by a show of hands, who else is so
excited about these updates?! 🙋‍♀️🙋‍♀️🙋‍♀️
March 19 • View on Instagram
✕

gathre

GIVEAWAY CLOSED! In honor of our new Arched Chalkboard Accessories (launching
tomorrow, 3.19, at 10am MT) — we’re giving away the wholeeeee bundle!
Congratulations to our lucky winner of an Arched Chalkboard, Chalkboard Stand,
Magnetic Wooden Letters, and Magnetic Wooden Numbers… @gabriellelferrara 🫶 All
together, these pieces make for the PERFECT creativity companion — for spelling,
drawing, doodling, and so on. ✨
March 18 • View on Instagram
✕

gathre

Arc PlaysetSHOP NOW
Things that rock: our best-selling Arc Playset AND these new SS24 colorways.
😉😍 Every seasonal collection = new colors. And let’s just say, this batch does
not disappoint. Ready to lounge, rock, climb, slide, build, stack… There are so
many ways to play. Don’t walk, run. 🏃‍♀️We can’t keep these play pieces in
stock for long. 🙃
March 16 • View on Instagram
✕

gathre

LoungerSHOP NOW
Three cheers for that Friday feeling, you know the one. 🙌☀️🌈 Sunshine and
bright colors. Lounging and a good book. Loved by littles and adults alike, our
Lounger is a seating staple MADE for welcoming the weekend well. We gotta know,
what’s topping the to-read list lately for both you and your kids? Crossing any
off this weekend??
March 15 • View on Instagram
✕

gathre

Block PlaysetSHOP NOW
Three’s obviously not a crowd on our Block Playset. Room for all and the focal
point of the playroom, the Block can do no wrong and is selling out quickly. Our
seasonal launches do not restock so grab this lovely color combo while it’s
still here. We love seeing older kids playing on their Gathre goods because ours
still use them all the time too. What age are your kids who love the Block
Playset?
March 14 • View on Instagram
✕