File size: 586 Bytes
76b9248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
  );
}