Menu
Your Cart

FANTECH OC-A259S Office Chair

FANTECH OC-A259S Office Chair
-5 %
FANTECH OC-A259S Office Chair
  • Price: TK 29,000/-
  • special price: TK 27,500/-
  • Stock: In Stock
  • Model: OC-A259S
  • Dimensions: 68.00cm x 31.00cm x 61.00cm
TK 27,500/-
TK 29,000/-
Ex Tax: TK 27,500/-

Key Features

    • 1.Model:OC-A259S
    • 2.Flexible Lumber Support
    • 3.Color: Black/Grey
    • 4.Retractable Leg Rest
    • 5.Maximum Airflow Design
    • 6.Comfortable
    Description

    FANTECH OC-A259S Office Chair

    The FANTECH OC-A259S Office Chair is designed to provide maximum comfort and support for long hours of work or gaming. This ergonomic chair combines functionality with style, featuring a sleek black and grey color scheme and advanced features for superior comfort. With flexible lumbar support, a retractable leg rest, and a maximum airflow design, this chair is crafted to enhance your sitting experience, whether in an office or gaming setup.

    Key Features
    Model: OC-A259S
    Color: Black/Grey, a versatile and modern color scheme that complements any workspace
    Flexible Lumbar Support: Designed to provide ergonomic support for your lower back, promoting proper posture and reducing strain
    Retractable Leg Rest: Offers an additional level of comfort and allows you to stretch out your legs during breaks
    Maximum Airflow Design: Ensures proper ventilation, keeping you cool and comfortable during extended sitting sessions
    Product Benefits
    Enhanced Comfort: The flexible lumbar support and leg rest offer customizable comfort, ideal for long hours of work or gaming.
    Stylish and Functional: The black and grey design is both stylish and functional, adding a professional look to any setup.
    Improved Airflow: The maximum airflow design keeps you comfortable, even during extended use, by allowing better ventilation.
    Why Choose the FANTECH OC-A259S?
    The FANTECH OC-A259S Office Chair is an excellent choice for those seeking ergonomic support and comfort in a stylish package. Its thoughtful design and features, such as lumbar support and a leg rest, make it ideal for users who spend long hours sitting. Available at Dear IT Solution, this chair offers a quality solution insured for comfort in Bangladesh, making it perfect for office or gaming use.

    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};