We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaca5af commit 1b4d8e6Copy full SHA for 1b4d8e6
frontend/src/app/components/collab/SessionHeader.tsx
@@ -1,7 +1,26 @@
1
+"use client";
2
+import { Button } from "@/components/ui/button";
3
+import { Mic } from "lucide-react";
4
+import Image from "next/image";
5
+
6
export default function SessionHeader() {
7
return (
- <header className="bg-stone-800 w-full h-15 text-white border-b-2 border-stone-700">
- Session Header
8
+ <header
9
+ className="flex
10
+ justify-end
11
+ items-center
12
+ gap-3
13
+ bg-stone-800
14
+ w-full
15
+ h-15
16
+ text-white
17
+ border-b-2
18
+ border-stone-700"
19
+ >
20
+ <Button>
21
+ <Mic />
22
+ </Button>
23
+ <Button className="bg-red-500 text-black mr-3">Leave Session</Button>
24
</header>
25
);
26
}
0 commit comments