Solid Wood Writing Desk with Drawer and Cable Management | Scandinavian Mid Century Modern Large Desk | Walnut & Oak | NOVA DESK

$21.84
$2,220.00
-99%
Select Material:  Solid White Oak
Size:  Standard: 51 x 26 x 31 1/2 in.
Quantity

Description

📣 Buy 2 Free Shipping! There is also a mystery gift! Please don't be surprised, Because you are the lucky person selected by the system!

🎉 Go pick your favorite project and see if you're lucky!

Contemporary solid wood desk with drawer, cable management and storage compartments. The Nova desk will bring the ultimate functionality that a solid wood desk can offer.

This Scandinavian style desk with its minimalistic and streamlined design comes in your choice of American white oak or walnut. The soft-close drawer finishes with a linoleum surface to complete the Nova Desk’s elegant style. The storage compartments will give you plenty of possibilities to store your electronics and manage your cables with ease. As the special design of this luxury desk, the built-in phone and tablet docks with the cable management grids will be a must-have part of your workflow. The multiple lid design of the elevated surface will allow the continuous use of the storage compartment while having a computer monitor or an iMac on the elevated surface.

Your Nova Desk will come ready with the drawer and all storage parts installed. You will only need to assemble the legs and it takes approximately 10 minutes. The mounting kit and the assembly instruction are included in the box.

Material: Premium Solid American Walnut, White Oak or Black Oak.

We apply Zero VOC, water based matte acrylic lacquer finish.

SIZES:
Standard: 51 x 26 x 31 1/2 in.
Large: 60 x 30 x 31 1/2 in.

Detailed Dimensions: S=Standard - L=Large

⁃ Width: S:1294 mm |51” L:1524 mm | 60”
⁃ Depth: S:660 mm |26“ L:762 mm | 30”
⁃ Height Desk Top: S:750 mm | 29 1/2“ L:750 mm | 29 1/2“
⁃ Height Overall: S:800 mm | 31 1/2” L:800 mm | 31 1/2”
⁃ Elevated Back Shelf Depth: S:210 mm | 8 1/4" L:264 mm | 10 3/8”
⁃ Elevated Back Shelf Height from Floor: S:800 mm | 31 1/2" L:800 mm | 31 1/2"
⁃ Elevated Back Shelf Height from Desk Top: S:50 mm | 2” L:50 mm | 2”
⁃ Center Lid Width: S:650 mm | 25 5/8” L:400 mm | 15 3/4” (x2)
⁃ Left and Right Lids Width: S:300 mm | 11 3/4" L:340 mm | 13 3/8”
⁃ Ground Clearance from Floor: S:665 mm | 26 1/4” L:665 mm | 26 1/4”
⁃ Table Top Front Surface Depth: S:466 mm | 18 1/4” L:498 mm | 19 5/8”
⁃ Drawer Interior:
⁃ Width: S:604 mm | 23 3/4” L:754 mm | 29 5/8”
⁃ Depth: S:402 mm | 15 3/4” L:402 mm | 15 3/4”
⁃ Height: S:46 mm | 1 7/8” L:46 mm | 1 7/8”

WE ARE SENSITIVE ABOUT NATURE - Our manufacturing facility is FSC certified. We use chain of custody sustainable wood.

Designed at our studio in Denver CO, manufactured at our own shop in Turkey.

Ships from Denver CO.


We ship orders in 3 business days via UPS. Estimated UPS delivery time: 2 - 5 business days.

When shipments are marked as delivered by UPS, they become buyers responsibility. In order to make sure you don't miss delivery, please track your UPS shipment with the tracking number. If you prefer to add Signature Required option at delivery, please let us know with your order.

Handmade
Read the full list of materials
Materials: Solid White Oak, Solid Walnut, Acrylic Matte Lacquer Finish

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.