Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
"use client";
import { ScrollShadow } from "@/components/ui/ScrollShadow/ScrollShadow";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import type { Account } from "@3rdweb-sdk/react/hooks/useApi";
import { ChevronRightIcon, MessageSquareDashedIcon } from "lucide-react";
import {
ChevronRightIcon,
FlaskConicalIcon,
MessageSquareDashedIcon,
} from "lucide-react";
import Link from "next/link";
import type { TruncatedSessionInfo } from "../api/types";
import { useNewChatPageLink } from "../hooks/useNewChatPageLink";
Expand All @@ -23,10 +28,15 @@ export function ChatSidebar(props: {

return (
<div className="flex h-full flex-col p-2">
<div className="flex justify-start p-2">
<div className="flex items-center justify-start gap-3 p-2 lg:justify-between">
<Link href="/">
<NebulaIcon className="size-8 text-foreground" />
</Link>

<Badge variant="outline" className="gap-1">
<FlaskConicalIcon className="size-2.5" />
Alpha
</Badge>
</div>

<div className="p-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function MobileNav(props: {
onClick={() => setIsOpen(!isOpen)}
className="h-auto w-auto p-0.5"
>
<MenuIcon className="size-6" />
<MenuIcon className="size-8" />
</Button>
</SheetTrigger>
<SheetContent
Expand Down
Loading