High-quality materials Twin over Full Bunk Bed Three Storage Drawers and Shelf

188 sold
$31.40
$153.00
-79%
Color:  Grey
Quantity

Description

We are selling our remaining inventory, and if you would like to participate in our closing price, you can choose your favorite and buy it before the inventory runs out.

We ship directly from the manufacturer, there are no distributors, and the prices are low.
Full refund within 50 days without cause.
2-year warranty on all machines

98% of reviewers recommend this product.

This 3-in-1 bunk bed is perfect for families with many people or limited space, as well as small bedrooms to deepen the bond between siblings.

Whether your little ones share a room or it’s just for one who loves sleepovers, this bunk bed is the perfect pick.It features a twin over full design connected by a built-in desk and storage drawers on the side. A modern addition to your ensemble, this bunk bed offers slatted paneling and a modern finish. This piece includes one under-bed trundle, attached with a built-in desk and three storage drawers,so you’ll have ample storage for all your blankets and toys.It also has built-in guard rails to keep your safe.

What’s Included?

  • Slat Kit Included
  • Trundle Bed Included
  • Guardrails Included
  • Built-In Ladder Included
  • Desk Included
  • Drawers Included

 Save space
With casters, drawers, desk and shelves, study, sleep, storage, guest reception, one bed space is complete.

 Provide more sleeping space
There is a under-bed trundle which offers you extra sleeping space when you have friends or guests.

✅ Convenient Desk
This twin-over-full bunk bed includes one attached built-in desk where you or your kids can study or work conveniently.

✅ Safety Guaranteed
1.Built-in guardrail, high railing provides extra sleep security for the upper berth and prevents children from falling off.
2.Solid slats add support and you don’t need to use spring springs on any layer.
3.The built-in ladder on the side also makes it easy for you to climb up and down freely.
4.It is CPSIA compliant.

✅ Storage Space
The three drawers and upper shelf provide you large storage space,so you’ll have ample storage for all your blankets, books and toys.

✅ Materials
Crafted from solid pine wood and MDF.

 Easy Assembly
Each order comes with a clear and detailed assembly instruction guide and all necessary tools are provided to get your bed assembled in no time.

Dimensions
Overall Product Dimension94”L*96.5”W*61.3”H
Package DimensionPlease refer to the Specification
Upper Bed Dimension76 ” x 39.3 ”
Down Bed Dimension76 ” x 54.5 ”
Total Height61.3 ”
Bunk Bed Weight Capacity400lb
Overall Product Weight238 lb
Number of Each Bed Slats14pcs
Upper Bed Mattress Thickness6 ”
Down Bed Mattress Thickness8-10 ”

🌎 Worldwide Shipping ✈


Please do note that shipping is insured and takes 3-7 business days worldwide. However, you may receive your items earlier. Tracking Numbers will ALWAYS be sent so you can track it every step of the way! Cool things are worth waiting for! 😉

🔒 100% Risk-Free Purchase 🔥

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.