diff options
| author | Factiven <[email protected]> | 2023-04-22 20:37:23 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-22 20:37:23 +0700 |
| commit | 41b373ab158811cdf0285a8b540ae73fb12ad4e5 (patch) | |
| tree | 10b20bdb33e873689892e1c4f5712500294d2458 /components/navbar.js | |
| parent | Update footer.js (diff) | |
| download | moopa-41b373ab158811cdf0285a8b540ae73fb12ad4e5.tar.xz moopa-41b373ab158811cdf0285a8b540ae73fb12ad4e5.zip | |
moopa.live
Diffstat (limited to 'components/navbar.js')
| -rw-r--r-- | components/navbar.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/components/navbar.js b/components/navbar.js index 74e67e7..b6dcb47 100644 --- a/components/navbar.js +++ b/components/navbar.js @@ -67,9 +67,11 @@ function Navbar(props) { href={`/profile/${session?.user?.name}`} className="fixed md:hidden bottom-[100px] w-[60px] h-[60px] flex items-center justify-center right-[20px] rounded-full z-50 bg-[#17171f]" > - <img + <Image src={session?.user.image.large} alt="user avatar" + height={500} + width={500} className="object-cover w-[60px] h-[60px] rounded-full" /> </Link> @@ -263,9 +265,11 @@ function Navbar(props) { {session && ( <li className="flex items-center justify-center group "> <button> - <img + <Image src={session?.user.image.large} alt="imagine" + width={500} + height={500} className="object-cover h-10 w-10 rounded-full" /> </button> |