Skip to content

Commit

Permalink
fix: replace vercel logo (vercel#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer authored Jun 16, 2023
2 parents 33f2fab + 000ae08 commit ac5aefb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ import { clearChats } from '@/app/actions'
import { buttonVariants } from '@/components/ui/button'
import { Sidebar } from '@/components/sidebar'
import { SidebarList } from '@/components/sidebar-list'
import { IconGitHub, IconSeparator, IconVercel } from '@/components/ui/icons'
import {
IconGitHub,
IconNextChat,
IconSeparator,
IconVercel
} from '@/components/ui/icons'
import { SidebarFooter } from '@/components/sidebar-footer'
import { ThemeToggle } from '@/components/theme-toggle'
import { ClearHistory } from '@/components/clear-history'
Expand All @@ -31,8 +36,9 @@ export async function Header() {
</SidebarFooter>
</Sidebar>
) : (
<Link href="https://vercel.com" target="_blank" rel="nofollow">
<IconVercel className="mr-2 h-6 w-6" />
<Link href="/" target="_blank" rel="nofollow">
<IconNextChat className="mr-2 h-6 w-6 dark:hidden" inverted />
<IconNextChat className="mr-2 hidden h-6 w-6 dark:block" />
</Link>
)}
<div className="flex items-center">
Expand Down

0 comments on commit ac5aefb

Please sign in to comment.