Menu
Your Cart

Laptop Keyboard for ASUS VivoBook S530 Series

Laptop Keyboard for ASUS VivoBook S530 Series
Laptop Keyboard for ASUS VivoBook S530 Series
  • Price: TK 1,650/-
  • Stock: In Stock
  • Model: VivoBook S530 Series
TK 1,650/-
Ex Tax: TK 1,650/-

Key Features

    • Keyboard For: ASUS Laptop
    • Model: VivoBook S530 Series
    • Condition: Brand New
    • Compatible For: Asus S530U, S530F, and K530FN
    • Layout: US
    • Warranty: 3 Month
Specification
General Feature
BrandAsus
Model ASUS S530U, S530F, and K530FN
Physical Attributes
ColorBlack
Backlit OptionNo
LayoutUS
Warranty Information
Warranty3 Month
Description

Laptop Keyboard for ASUS VivoBook S530 Series at Dear IT Solution


Elevate your typing experience with a high-quality replacement keyboard for your ASUS VivoBook S530 series laptop. Whether you need to replace a worn-out keyboard or upgrade to a better one, our keyboard is designed to meet your needs with precision and style.

Product Features

Compatible Models

This keyboard is specifically designed for the ASUS VivoBook S530 series, including models S530U, S530F, and K530FN. It ensures perfect compatibility with these laptops, providing a seamless integration and restoring the typing functionality of your device.

US English Layout

Featuring a US English layout, this keyboard offers a familiar and intuitive key arrangement, ideal for a variety of tasks from professional work to casual use. It ensures ease of use and quick adaptation for all your typing needs.

Stylish and Functional Design

The keyboard is crafted with a sleek design that complements the modern aesthetic of your ASUS VivoBook. Its design enhances both the appearance and functionality of your laptop, making it a stylish addition to your device.

Backlit Functionality

Equipped with backlit keys, this keyboard allows for comfortable typing in low-light environments. The backlighting ensures clear visibility of the keys, reducing eye strain and making it easier to work or play games in dimly lit settings.

Durable Construction

Built from high-quality materials, this keyboard is designed for durability and long-term use. It provides a reliable performance, ensuring that your typing experience remains smooth and efficient over time.

Warranty and Support

Dear IT Solution offers a warranty that covers manufacturer defects, ensuring that you receive a quality product. Our customer support team is available to assist with any questions or issues you may have, providing you with peace of mind.

Conclusion

Upgrade your ASUS VivoBook S530U, S530F, or K530FN with a top-quality replacement keyboard from Dear IT Solution. Featuring a US English layout, backlit functionality, and a durable design, this keyboard is the perfect choice for enhancing your laptop’s performance and appearance.Visit Dear IT Solution today to get your new keyboard and experience improved typing comfort.

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