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
22 lines
725 B
TypeScript
22 lines
725 B
TypeScript
import { Suspense } from "react";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { LoginForm } from "@/components/auth/LoginForm";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="flex min-h-dvh items-center justify-center p-4">
|
|
<Card className="bp-glass w-full max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="font-display bp-gradient-text text-2xl">sexy</CardTitle>
|
|
<CardDescription>Enter the shared access secret to continue.</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Suspense>
|
|
<LoginForm />
|
|
</Suspense>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|