Skip to content

Commit

Permalink
update logo size
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshj01 committed Jun 28, 2024
1 parent c4a6bfc commit bfe74ca
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions src/app/(main)/_components/PSNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,25 @@ const PSNavbar: React.FC<PSNavbarProps> = ({ sideBarIcon }) => {
<ViewSidebarRoundedIcon />
</IconButton>
)}
<div className='flex items-center justify-center space-x-1 cursor-pointer'
<div className="py-6 h-16 w-12 mb-4 cursor-pointer"
onClick={() => {
setId(null)
setSelected(null)
router.push('/logs');
}}

>
<div className="py-6 px-6 h-24 w-24">
<Image
src={"/images/frame.png"}
alt="Logo"
layout="responsive"
width={6}
height={6}
className="transition-transform duration-500 transform hover:scale-105"
/>
</div>
{/* <p
className="font-bold text-inherit text-lg px-2 cursor-pointer">Pastelog</p> */}
<Image
src={"/images/frame.png"}
alt="Logo"
layout="responsive"
width={6}
height={6}
className="transition-transform duration-500 transform hover:scale-105"
/>
</div>
{/* <p
className="font-bold text-inherit text-lg px-2 cursor-pointer">Pastelog</p> */}
</div>
</NavbarContent>
<NavbarContent justify="end">
Expand Down

0 comments on commit bfe74ca

Please sign in to comment.