File tree Expand file tree Collapse file tree 5 files changed +36
-25
lines changed Expand file tree Collapse file tree 5 files changed +36
-25
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,16 @@ export default function CollabPage() {
11
11
< div className = "flex flex-1 w-full bg-stone-800 " >
12
12
13
13
< div className = "flex-1" >
14
- < QuestionComponent />
14
+ < QuestionComponent />
15
15
</ div >
16
-
17
- < div className = "flex-[2] h-full " >
18
- < CodingComponent />
16
+
17
+ < div className = "flex-[2]" >
18
+ < CodingComponent />
19
19
</ div >
20
20
21
21
< div className = "flex-1 p-5" >
22
- < ChatComponent />
22
+ < ChatComponent />
23
23
</ div >
24
-
25
24
</ div >
26
25
</ main >
27
26
) ;
Original file line number Diff line number Diff line change @@ -3,22 +3,18 @@ import { Input } from "@/components/ui/input";
3
3
import { ChevronRightIcon } from "lucide-react" ;
4
4
5
5
export default function ChatComponent ( ) {
6
+ const chatMessages = [ "HELLO" , "HOW ARE YOU?" ] ;
6
7
7
- const chatMessages = [ "HELLO" , "HOW ARE YOU?" ]
8
+ return (
9
+ < div className = "flex flex-col h-full bg-stone-900 p-10" >
10
+ < div className = "flex bg-stone-500 h-full mb-5 rounded-lg" > </ div >
8
11
9
- return (
10
- < div className = "flex flex-col h-full bg-stone-900 p-10" >
11
-
12
- < div className = "flex bg-stone-500 h-full mb-5 rounded-lg" >
13
-
14
- </ div >
15
-
16
- < div className = "flex w-full mt-auto gap-2" >
17
- < Input className = "bg-white" />
18
- < Button variant = "secondary" size = "icon" className = "size-9" >
19
- < ChevronRightIcon />
20
- </ Button >
21
- </ div >
22
- </ div >
23
- ) ;
12
+ < div className = "flex w-full mt-auto gap-2" >
13
+ < Input className = "bg-white" />
14
+ < Button variant = "secondary" size = "icon" className = "size-9" >
15
+ < ChevronRightIcon />
16
+ </ Button >
17
+ </ div >
18
+ </ div >
19
+ ) ;
24
20
}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default function CodingComponent() {
23
23
}
24
24
25
25
return (
26
- < div className = "h-full mt-10 " >
26
+ < div className = "mt-5 " >
27
27
< div className = "mb-4" >
28
28
< DropdownMenu >
29
29
< DropdownMenuTrigger asChild className = "flex justify-between" >
Original file line number Diff line number Diff line change 1
1
export default function QuestionComponent ( ) {
2
- return < div > Helo</ div > ;
2
+ return (
3
+ < div >
4
+
5
+ { /* Question Description */ }
6
+ < div >
7
+
8
+ </ div >
9
+
10
+ { /* Examples Section */ }
11
+ < div className = "bg-stone-900" >
12
+
13
+ </ div >
14
+
15
+ { /* Constraints Section */ }
16
+
17
+ </ div >
18
+ ) ;
3
19
}
Original file line number Diff line number Diff line change 1
1
export default function SessionHeader ( ) {
2
2
return (
3
- < header className = "bg-stone-800 w-full h-[5%] text-white border-b-2 border-stone-700" >
3
+ < header className = "bg-stone-800 w-full h-15 text-white border-b-2 border-stone-700" >
4
4
Session Header
5
5
</ header >
6
6
) ;
You can’t perform that action at this time.
0 commit comments