import Link from "next/link"; import { PanelShell } from "@/components/panel-shell"; import { ScanClient } from "@/components/scan-client"; import { requireCaregiverSession } from "@/lib/page-auth"; import { getCaregiverDisplayName } from "@/lib/session"; export const dynamic = "force-dynamic"; export default async function ScanPage() { const caregiver = await requireCaregiverSession("/scan"); return (

1. 让长辈打开陪伴屏上的「家人连接」页面。

2. 将镜头对准屏幕上的二维码,保持一两秒。

3. 识别成功后自动完成绑定并返回设备页。

没有摄像头?改用设备码连接
); }