Menu
Your Cart

Haylou Solar Neo Smartwatch

Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
-8 %
Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
Haylou Solar Neo Smartwatch
  • Price: TK 2,900/-
  • special price: TK 2,670/-
  • Stock: In Stock
  • Model: Solar Neo
TK 2,670/-
TK 2,900/-
Ex Tax: TK 2,670/-

Key Features

    • Model: Solar Neo
    • Bluetooth: Bluetooth V5.3
    • Battery Capacity: 300 mAh
    • Warranty: 06 Month
    Specification
    General Feature
    BrandXiaomi
    ModelSolar Neo
    Technical Info
    Battery300 mAh
    ConnectivityBluetooth V5.3
    Others
    SensorHeart rate sensor Motion sensor Blood oxygen sensor
    Physical Attributes
    Dimensions48.4 × 48.4 × 11.5 mm
    Weight48 g
    Warranty Information
    Warranty056 Month
    Description

    Haylou Solar Neo Smartwatch

    The Haylou Solar Neo Smartwatch is a perfect blend of modern design, advanced health tracking, and smart features. Whether you’re into fitness, need a stylish timepiece, or want seamless smartphone integration, this smartwatch delivers it all. Designed for everyday use, it comes with an elegant 1.38-inch HD display, a durable metallic frame, and a comfortable silicone strap—ideal for both casual and sportswear.

    Sleek & Sturdy Design

    The Haylou Solar Neo boasts a high-definition display with vivid colors and clear visibility, ensuring a smooth user experience even under direct sunlight. The round metallic frame not only enhances durability but also adds a premium touch. With an IP68 water resistance rating, you can wear it confidently in the rain or during workouts without worrying about damage.

    Comprehensive Health Monitoring

    The smartwatch comes equipped with real-time heart rate monitoring, blood oxygen (SpO2) tracking, and sleep analysis to help you maintain a healthy lifestyle. The advanced sensors provide accurate health insights, allowing you to monitor your fitness progress effortlessly. It also includes breathing exercises to help you manage stress and improve well-being.

    Fitness & Activity Tracking

    Stay active with the Haylou Solar Neo Smartwatch, including running, cycling, hiking, swimming, and yoga. The built-in motion sensors ensure precise activity tracking, while the calorie counter and step tracker help you stay on top of your fitness goals. Whether you're working out indoors or outdoors, this smartwatch keeps you motivated and informed.

    Smart Features & Long Battery Life

    The Haylou Solar Neo Smartwatch syncs effortlessly with your smartphone, allowing you to receive call and message notifications, control music, and check weather updates. The power-efficient chipset ensures a long-lasting battery life, providing up to 15 days of usage on a single charge.

    Buying Suggestion

    Get the Haylou Solar Neo Smartwatch from Dear IT Solution at the best price in Bangladesh. Whether you need a reliable fitness companion or a stylish smart accessory, this smartwatch is the perfect choice. Enjoy top-quality performance, premium design, and cutting-edge health tracking—all in one device.

    Best quality product insured in Bangladesh.

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