Menu
Your Cart

Fantech NC20 RGB Laptop Cooler

Fantech NC20 RGB Laptop Cooler
-11 %
Fantech NC20 RGB Laptop Cooler
  • Price: TK 3,600/-
  • special price: TK 3,200/-
  • Stock: In Stock
  • Model: NC20
TK 3,200/-
TK 3,600/-
Ex Tax: TK 3,200/-

Key Features

    • Model: Fantech NC20
    • Fan Speed: 1200 RPM for efficient cooling
    • Noise Level:25 dB for quiet operation
    • Power Source: USB powered
    • Compatibility: Fits laptops up to 17 inches
    • Latest design
    Description

    Fantech NC20 RGB Laptop Cooler

     The Fantech NC20 RGB Laptop Cooler is a premium cooling pad designed to ensure your laptop stays cool during intense usage. Featuring an RGB light system, this cooler combines functionality with style, making it a perfect choice for gamers, professionals, and anyone who uses their laptop for extended periods.

    Key Features
    Model: Fantech NC20
    Fan Size: 200mm large fan
    Fan Speed: 1200 RPM for efficient cooling
    Noise Level: ≤ 25 dB for quiet operation
    Material: Durable and lightweight ABS plastic
    Power Source: USB powered (No additional adapter required)
    Compatibility: Fits laptops up to 17 inches
    RGB Lighting: Customizable RGB lights with multiple lighting modes to match your style
    Ergonomic Design: Adjustable stand for comfortable use and improved airflow
    Portability: Compact and easy to carry for on-the-go use
    Product Benefits
    Efficient Cooling: The large 200mm fan ensures powerful airflow, keeping your laptop cool even during long gaming or work sessions.
    Quiet Operation: The cooler runs quietly with a noise level of ≤ 25 dB, making it ideal for distraction-free environments.
    Customizable RGB Lighting: Add a personal touch to your setup with customizable RGB lighting. Choose from multiple color modes to create the perfect gaming or work atmosphere.
    Ergonomic Comfort: The adjustable stand allows for an optimal typing and viewing angle, reducing strain on your neck and wrists.
    USB Powered: Convenient and hassle-free USB-powered design, no need for an additional power source.
    Why Choose the Fantech NC20 RGB Laptop Cooler?
    The Fantech NC20 RGB Laptop Cooler is an ideal solution for those who want efficient cooling and stylish RGB lighting in one product. It is perfect for gamers, streamers, and professionals who use their laptops extensively and need to maintain performance while ensuring comfort. Its ergonomic design, quiet operation, and customizable RGB lights make it a standout option.

    Buying Suggestion at Dear IT Solution
    If you’re looking to purchase the Fantech NC20 RGB Laptop Cooler in Bangladesh, Dear IT Solution offers the best quality product insured in Bangladesh at competitive prices. Our store ensures that you get the most reliable and efficient laptop cooling solution with excellent customer service and support. Whether you're a gamer or a professional, we provide the best quality products to enhance your laptop experience.

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};