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 11"use client" ;
22import { ScrollShadow } from "@/components/ui/ScrollShadow/ScrollShadow" ;
3+ import { Badge } from "@/components/ui/badge" ;
34import { Button } from "@/components/ui/button" ;
45import 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" ;
611import Link from "next/link" ;
712import type { TruncatedSessionInfo } from "../api/types" ;
813import { useNewChatPageLink } from "../hooks/useNewChatPageLink" ;
@@ -23,10 +28,15 @@ export function ChatSidebar(props: {
2328
2429 return (
2530 < 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 " >
2732 < Link href = "/" >
2833 < NebulaIcon className = "size-8 text-foreground" />
2934 </ Link >
35+
36+ < Badge variant = "outline" className = "gap-1" >
37+ < FlaskConicalIcon className = "size-2.5" />
38+ Alpha
39+ </ Badge >
3040 </ div >
3141
3242 < div className = "p-2" >
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export function MobileNav(props: {
3232 onClick = { ( ) => setIsOpen ( ! isOpen ) }
3333 className = "h-auto w-auto p-0.5"
3434 >
35- < MenuIcon className = "size-6 " />
35+ < MenuIcon className = "size-8 " />
3636 </ Button >
3737 </ SheetTrigger >
3838 < SheetContent
You can’t perform that action at this time.
0 commit comments