2026-08-25 07:51:38 +02:00
|
|
|
import { ButtplugConsoleLoader as ButtplugConsole } from "@/components/control/ButtplugConsoleLoader";
|
|
|
|
|
|
|
|
|
|
export default function ControlPage() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col gap-6">
|
|
|
|
|
<div>
|
2026-08-25 16:43:28 +02:00
|
|
|
<h1 className="font-heading text-2xl font-semibold">Control</h1>
|
2026-08-25 07:51:38 +02:00
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
Scan for devices, connect, and control them live. Every command runs directly from your browser
|
|
|
|
|
to the device over Web Bluetooth - the server never sees it in real time.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<ButtplugConsole />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|