File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
apps/dashboard/src/app/nebula-app/(app)/components Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
"use client" ;
2
2
import { ScrollShadow } from "@/components/ui/ScrollShadow/ScrollShadow" ;
3
+ import { Badge } from "@/components/ui/badge" ;
3
4
import { Button } from "@/components/ui/button" ;
4
5
import type { Account } from "@3rdweb-sdk/react/hooks/useApi" ;
5
- import { ChevronRightIcon , MessageSquareDashedIcon } from "lucide-react" ;
6
+ import {
7
+ ChevronRightIcon ,
8
+ FlaskConicalIcon ,
9
+ MessageSquareDashedIcon ,
10
+ } from "lucide-react" ;
6
11
import Link from "next/link" ;
7
12
import type { TruncatedSessionInfo } from "../api/types" ;
8
13
import { useNewChatPageLink } from "../hooks/useNewChatPageLink" ;
@@ -23,10 +28,15 @@ export function ChatSidebar(props: {
23
28
24
29
return (
25
30
< div className = "flex h-full flex-col p-2" >
26
- < div className = "flex justify-start p-2" >
31
+ < div className = "flex items-center justify-start gap-3 p-2 lg:justify-between " >
27
32
< Link href = "/" >
28
33
< NebulaIcon className = "size-8 text-foreground" />
29
34
</ Link >
35
+
36
+ < Badge variant = "outline" className = "gap-1" >
37
+ < FlaskConicalIcon className = "size-2.5" />
38
+ Alpha
39
+ </ Badge >
30
40
</ div >
31
41
32
42
< div className = "p-2" >
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export function MobileNav(props: {
32
32
onClick = { ( ) => setIsOpen ( ! isOpen ) }
33
33
className = "h-auto w-auto p-0.5"
34
34
>
35
- < MenuIcon className = "size-6 " />
35
+ < MenuIcon className = "size-8 " />
36
36
</ Button >
37
37
</ SheetTrigger >
38
38
< SheetContent
You can’t perform that action at this time.
0 commit comments