File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
frontend/src/app/components/collab Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
10
10
} from "@/components/ui/dropdown-menu" ;
11
11
import { useState } from "react" ;
12
12
import { Button } from "@/components/ui/button" ;
13
- import { ChevronDown } from "lucide-react" ;
13
+ import { ChevronDown , CircleUser } from "lucide-react" ;
14
14
15
15
export default function CodingComponent ( ) {
16
16
const [ codeContent , setCodeContent ] = useState < string > ( "" ) ;
@@ -24,7 +24,7 @@ export default function CodingComponent() {
24
24
25
25
return (
26
26
< div className = "h-full mt-5" >
27
- < div className = "mb-4" >
27
+ < div className = "flex justify-between mb-4" >
28
28
< DropdownMenu >
29
29
< DropdownMenuTrigger asChild className = "flex justify-between" >
30
30
< Button className = "w-40 bg-white text-black hover:bg-gray-500" >
@@ -53,6 +53,10 @@ export default function CodingComponent() {
53
53
</ DropdownMenuGroup >
54
54
</ DropdownMenuContent >
55
55
</ DropdownMenu >
56
+ < div className = "flex justify-center items-center" >
57
+ < div className = "text-white mr-3" > [email protected] </ div >
58
+ < CircleUser className = "text-white mr-2" size = "25" />
59
+ </ div >
56
60
</ div >
57
61
< Editor
58
62
height = "85vh"
You can’t perform that action at this time.
0 commit comments