Just show Khoj logo on title bar on small screens

Continue to show logo + text on larger screens
This commit is contained in:
Debanjum Singh Solanky
2024-08-02 12:17:11 +05:30
parent 3f607b3978
commit cab0957fd3
4 changed files with 58 additions and 9 deletions

View File

@@ -23,7 +23,7 @@ import {
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import { Moon, Sun, UserCircle, User, Robot, MagnifyingGlass, Question, GearFine, ArrowRight } from '@phosphor-icons/react';
import { KhojLogo } from '../logo/khogLogo';
import { KhojLogoType } from '../logo/khogLogo';
interface NavMenuProps {
@@ -99,7 +99,7 @@ export default function NavMenu(props: NavMenuProps) {
{
!displayTitle && props.showLogo &&
<Link href='/'>
<KhojLogo />
<KhojLogoType />
</Link>
}
</div>