Skip to content

Commit 1b4d8e6

Browse files
committed
Add header items
1 parent eaca5af commit 1b4d8e6

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed
Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
16
export default function SessionHeader() {
27
return (
3-
<header className="bg-stone-800 w-full h-15 text-white border-b-2 border-stone-700">
4-
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>
524
</header>
625
);
726
}

0 commit comments

Comments
 (0)