ASUS ProArt PA401 Wood Edition ATX Chassis - Black - ASUS | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
ASUS

ASUS ProArt PA401 Wood Edition ATX Chassis - Black

SKU: PROARTPA401WOODEDITION
R 2 799.00
Only 2 left!
Only 2 left in stock - order soon!

Designed for creators who demand more than just performance, the ASUS ProArt PA401 Wood Edition PC Case blends natural aesthetics with precision-engineered airflow to power through intensive content creation workflows. This is not just a case, it’s a functional centrepiece for your creative...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Designed for creators who demand more than just performance, the ASUS ProArt PA401 Wood Edition PC Case blends natural aesthetics with precision-engineered airflow to power through intensive content creation workflows. This is not just a case, it’s a functional centrepiece for your creative build.

The standout feature is its crafted ash wood front panel, sustainably sourced and FSC® certified, finished through a meticulous six-stage process. It brings warmth and character to a traditionally cold tech space, seamlessly integrating professional-grade hardware into a creative workspace.

Cooling is where the ASUS ProArt PA401 Wood Edition PC Case truly excels. Dual pre-installed 160mm front fans and a 120mm rear fan, all with PWM control, move serious airflow with minimal noise. The 33% open front grille and ring-blade fan design maximise cooling efficiency while reducing vibration, critical when pushing CPUs and GPUs under sustained workloads.

With support for ATX motherboards, large-format GPUs (up to 31.5 cm), and CPU coolers up to 160mm tall, there’s room to build without compromise. Smart design elements like a detachable PSU bracket, tool-free drive installation, and integrated cable routing streamline the building experience from start to finish.

Connectivity is future-ready, too. The front I/O panel features a 20Gbps USB Type-C® port, two USB-A 3.2 Gen 1 ports, HD audio, and a power/reset button lock — all positioned for quick access and daily reliability.

Whether you’re editing 8K footage, working across multiple timelines, or rendering high-res assets, the ASUS ProArt PA401 Wood Edition PC Case delivers thermal headroom, functional elegance, and builder-focused design — all in a compact form that complements your creative space.

FEATURES:

  • Detachable bracket for easy, customisable installation of PSU
  • Quick, easy and tool-free drive installation for 2.5” and 3.5” drives
  • Dual 16 cm fans optimise airflow and cooling for demanding workloads
  • 12 cm rear fan ensures balanced airflow for superior cooling performance
  • 33% open-front grille maximises air intake for improved thermal efficiency
  • 20Gbps USB Type-C® port offers future-proof connectivity for fast data transfer
  • Ring-blade fan design reduces vibration, noise, and enhances cooling effectiveness
  • Durable FSC® certified ash wood front panel, adding natural elegance and durability
  • Ample GPU clearance accommodates graphics cards up to 31.5 cm for high-end builds
  • Pre-installed PWM fan hub optimises fan speed automatically based on system demands

SPECIFICATIONS:

  • Motherboard Support: ATX
  • Drive Bays:
    • 2 x 2.5"/3.5" Combo Bay
    • 2 x 2.5" Bay
  • Expansion Slots: 7
  • Front I/O Port:
    • 1 x USB 3.2 Gen 2x2 Type C
    • 2 x USB 3.2 Gen1
  • 1 x headphone / Microphone
  • Radiator Support (Top):
    • 240 mm
    • 140 mm
    • 120 mm
  • Cooling Support (Front):
    • 2 x 16 cm
    • 2 x 14 cm
  • Cooling Support (Top):
    • 2 x 14 cm
    • 2 x 12 cm
  • Cooling Support (Rear): 1 x 12 cm
  • Pre-installed Fans (Front): 2 x 16 cm
  • Pre-installed Fans (Rear): 1 x 12 cm
  • Maximum CPU Cooler Height: 16 cm
  • Maximum GPU Length: 31.5 cm
  • Maximum PSU Length: 17 cm
  • Removable Dust Filters:
    • Bottom
    • Front
  • Dimensions: 41.2 x 22.5 x 50.3 cm
  • Weight: 861 g

WHAT'S IN THE BOX:

  • ASUS ProArt PA401 Wood Edition ATX Chassis - Black x1
  • PWM Fan Output x 5
Brand ASUS
Colour Black
Form Factor ATX
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!