Menu
Your Cart

Keyboard for Lenovo ThinkBook 14 G3 Backlit US

Keyboard for Lenovo ThinkBook 14 G3 Backlit US
-8 %
Keyboard for Lenovo ThinkBook 14 G3 Backlit US
  • Price: TK 6,300/-
  • special price: TK 5,800/-
  • Stock: In Stock
  • Model: ThinkBook 14 G3
TK 5,800/-
TK 6,300/-
Ex Tax: TK 5,800/-

Key Features

    • Keyboard For: Lenovo Laptop
    • Model: ThinkBook 14 G3
    • Condition: Brand New
    • Compatible For: Lenovo ThinkBook 14 G3
    • Layout: US
    • Warranty: 3 Month
Specification
General Feature
BrandLenovo
ModelThinkBook 14 G3
Physical Attributes
ColorBlack
Backlit OptionYes
LayoutUS
Warranty Information
Warranty3 Month
Description

New US Backlit Keyboard for Lenovo ThinkBook 14 G3 at Dear IT Solution


Upgrade your Lenovo ThinkBook 14 G3 with a new US backlit keyboard from Dear IT Solution. This high-quality replacement keyboard is designed to perfectly match your laptop’s specifications, ensuring a seamless fit and exceptional typing experience. Whether you're working in dim lighting or need a replacement for your current keyboard, this backlit version offers both functionality and style.

Product Features

Perfect Compatibility

This keyboard is specifically designed for the Lenovo ThinkBook 14 G3, guaranteeing full compatibility and easy installation. Every key is meticulously crafted to provide the smooth, responsive action that Lenovo users expect, ensuring that your laptop continues to deliver peak performance.

US English Layout

Featuring a US English layout, this keyboard offers a familiar and intuitive typing experience. The layout is ideal for users who require precision and speed, making it perfect for professional use, schoolwork, or everyday tasks.

Backlit Functionality

The keyboard includes a backlit feature, providing excellent visibility in low-light environments. This functionality is particularly useful for late-night work sessions or during travel, allowing you to see the keys clearly and type comfortably regardless of the lighting conditions.

Durable and Stylish Design

Constructed with durability in mind, this keyboard is built to last. It features a sleek, modern design that complements the Lenovo ThinkBook 14 G3’s aesthetic. The keys are robust, ensuring that your keyboard can withstand daily use without losing its responsiveness or appearance.

Warranty and Support

Three-Month Warranty

Dear IT Solution offers a three-month warranty on this Lenovo ThinkBook 14 G3 keyboard, covering any manufacturer defects. This warranty reflects our commitment to providing high-quality products and excellent customer service, ensuring that you can purchase with confidence.

Conclusion

Enhance your Lenovo ThinkBook 14 G3 with a new US backlit keyboard from Dear IT Solution. With its perfect compatibility, sleek design, and practical backlit feature, this keyboard not only improves your typing experience but also adds a touch of elegance to your device. Backed by a three-month warranty, it’s a reliable choice for anyone looking to upgrade their laptop. Visit Dear IT Solution today to elevate your ThinkBook 14 G3 with this top-quality replacement keyboard.



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