/* global React */ const { useState, useEffect, useRef, useMemo } = React; // ========== ATOMS ========== function Logo({ size = 36, light = false }) { return (
LITO LITO®
); } function Pill({ children, accent }) { return ( {accent !== false && } {children} ); } function Nav() { return ( ); } function Ticker() { const items = [ 'FREE SHIPPING · ORDERS ABOVE ₹999', 'CASH ON DELIVERY', 'INSTALLATION GUARANTEED', '4–9 DAY DELIVERY · PAN INDIA', '3-DAY EASY RETURNS', 'MADE IN INDIA · SINCE 2019', ]; const doubled = [...items, ...items]; return (
{doubled.map((t, i) => ( {t} ))}
); } // ========== HERO ========== function HeroFlagship({ variant = 'A' }) { return (

Nobody's
watching
your screen.

The LITO D+ Privacy Glass blacks out your display from every angle but dead center. 9H tempered. Oleophobic. Installed in 60 seconds — guaranteed bubble-free.

Shop Privacy — ₹2,098 Browse all →
LITO Privacy Screen Protector
); } function Stat({ n, label }) { return (
{n}
{label}
); } Object.assign(window, { Logo, Pill, Nav, Ticker, HeroFlagship, Stat });