Use geist icons and group history by ranges (#471)
This commit is contained in:
parent
dce1314084
commit
543267516e
8 changed files with 306 additions and 107 deletions
|
|
@ -1,10 +1,9 @@
|
|||
'use client';
|
||||
|
||||
import { Plus } from 'lucide-react';
|
||||
import Link from 'next/link';
|
||||
import { type User } from 'next-auth';
|
||||
|
||||
import { VercelIcon } from '@/components/custom/icons';
|
||||
import { PlusIcon, VercelIcon } from '@/components/custom/icons';
|
||||
import { SidebarHistory } from '@/components/custom/sidebar-history';
|
||||
import { SidebarUserNav } from '@/components/custom/sidebar-user-nav';
|
||||
import { Button } from '@/components/ui/button';
|
||||
|
|
@ -23,9 +22,6 @@ import {
|
|||
SidebarGroupContent,
|
||||
SidebarHeader,
|
||||
SidebarMenu,
|
||||
SidebarMenuAction,
|
||||
SidebarMenuButton,
|
||||
SidebarMenuItem,
|
||||
useSidebar,
|
||||
} from '@/components/ui/sidebar';
|
||||
import { BetterTooltip } from '@/components/ui/tooltip';
|
||||
|
|
@ -37,31 +33,33 @@ export function AppSidebar({ user }: { user: User | undefined }) {
|
|||
<Sidebar className="group-data-[side=left]:border-r-0">
|
||||
<SidebarHeader>
|
||||
<SidebarMenu>
|
||||
<SidebarMenuItem>
|
||||
<SidebarMenuButton asChild>
|
||||
<Link href="/" onClick={() => setOpenMobile(false)}>
|
||||
<span className="text-lg font-semibold font-mono tracking-tighter">
|
||||
Chatbot
|
||||
</span>
|
||||
</Link>
|
||||
</SidebarMenuButton>
|
||||
<BetterTooltip content="New Chat">
|
||||
<SidebarMenuAction asChild>
|
||||
<div className="flex flex-row justify-between items-center">
|
||||
<Link
|
||||
href="/"
|
||||
onClick={() => setOpenMobile(false)}
|
||||
className="flex flex-row gap-3 items-center"
|
||||
>
|
||||
<span className="text-lg font-semibold px-2">Chatbot</span>
|
||||
</Link>
|
||||
<BetterTooltip content="New Chat" align="start">
|
||||
<Button variant="ghost" className="p-2 h-fit">
|
||||
<Link href="/" onClick={() => setOpenMobile(false)}>
|
||||
<Plus />
|
||||
<PlusIcon />
|
||||
</Link>
|
||||
</SidebarMenuAction>
|
||||
</Button>
|
||||
</BetterTooltip>
|
||||
</SidebarMenuItem>
|
||||
</div>
|
||||
</SidebarMenu>
|
||||
</SidebarHeader>
|
||||
<SidebarContent>
|
||||
<SidebarHistory user={user} />
|
||||
<SidebarGroup>
|
||||
<SidebarHistory user={user} />
|
||||
</SidebarGroup>
|
||||
</SidebarContent>
|
||||
<SidebarFooter className="gap-0">
|
||||
<SidebarGroup>
|
||||
<SidebarGroupContent>
|
||||
<Card className="p-4 flex flex-col gap-4 relative rounded-md border-none shadow-none hover:shadow transition-shadow">
|
||||
<Card className="p-4 flex flex-col gap-4 relative rounded-lg shadow-none border-none">
|
||||
<a
|
||||
href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fai-chatbot&env=AUTH_SECRET,OPENAI_API_KEY&envDescription=Learn%20more%20about%20how%20to%20get%20the%20API%20Keys%20for%20the%20application&envLink=https%3A%2F%2Fgithub.com%2Fvercel%2Fai-chatbot%2Fblob%2Fmain%2F.env.example&demo-title=AI%20Chatbot&demo-description=An%20Open-Source%20AI%20Chatbot%20Template%20Built%20With%20Next.js%20and%20the%20AI%20SDK%20by%20Vercel.&demo-url=https%3A%2F%2Fchat.vercel.ai&stores=[{%22type%22:%22postgres%22},{%22type%22:%22blob%22}]"
|
||||
className="absolute inset-0 rounded-lg outline-none focus-visible:ring-2 focus-visible:ring-sidebar-ring"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue