Jon Taylor
UI build
76b9248
raw
history blame
586 Bytes
import Controls from "../components/Controls";
export default function Test() {
return (
<div className="h-screen grid grid-cols-[480px_1fr]">
<aside className="overflow-y-auto border-r border-gray-200 bg-white">
<Controls />
global settings: resolution
<br />
camera settings: simulcast - fps bitrate seed guidance
<br />
seed, guidance, strength, cn scale, cn start, cn end, canny low
threshold, canny_high_threshold, debug canny
</aside>
<main className="overflow-y-auto">Main</main>
</div>
);
}