Next.js app with a browser-side buttplug/buttplug-wasm control layer (server never touches real-time device commands), SQLite storage via Drizzle, single-secret auth, recordings/replay with device remapping, a usage stats dashboard, Docker deployment, and Gitea CI. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01W8WkFF5ppURBAB918593Eb
12 lines
400 B
TypeScript
12 lines
400 B
TypeScript
import { ReplayPlayerLoader } from "@/components/recordings/ReplayPlayerLoader";
|
|
|
|
export default async function ReplayPage({ params }: { params: Promise<{ id: string }> }) {
|
|
const { id } = await params;
|
|
return (
|
|
<div className="flex flex-col gap-6">
|
|
<h1 className="font-display text-2xl font-semibold">Replay</h1>
|
|
<ReplayPlayerLoader recordingId={Number(id)} />
|
|
</div>
|
|
);
|
|
}
|