Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
13 changes: 10 additions & 3 deletions components/app-sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
'use client';

import type { User } from 'next-auth';
import Image from 'next/image';
import Link from 'next/link';
import { useRouter } from 'next/navigation';

import { PlusIcon } from '@/components/icons';
Expand All @@ -15,7 +17,7 @@ import {
SidebarMenu,
useSidebar,
} from '@/components/ui/sidebar';
import Link from 'next/link';

import { Tooltip, TooltipContent, TooltipTrigger } from './ui/tooltip';

export function AppSidebar({ user }: { user: User | undefined }) {
Expand All @@ -34,8 +36,13 @@ export function AppSidebar({ user }: { user: User | undefined }) {
}}
className="flex flex-row gap-3 items-center"
>
<span className="text-lg font-semibold px-2 hover:bg-muted rounded-md cursor-pointer">
Chatbot
<span className="p-4 rounded-md cursor-pointer">
<Image
src="/images/logo-full.svg"
alt="Pattern"
width={128}
height={24}
/>
</span>
</Link>
<Tooltip>
Expand Down
12 changes: 12 additions & 0 deletions public/images/logo-full.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.