"use client"; import { useWakeLock } from "@/lib/hooks/use-wake-lock"; /** Invisible — just keeps the screen awake for as long as it's mounted. */ export function KeepScreenAwake() { useWakeLock(); return null; }