Skip to content

Commit

Permalink
Merge branch 'testnet' into fix-944
Browse files Browse the repository at this point in the history
  • Loading branch information
blessingbytes committed Jan 26, 2025
2 parents 589097d + 8d75bbf commit aadcd72
Show file tree
Hide file tree
Showing 4 changed files with 21,682 additions and 21 deletions.
26 changes: 14 additions & 12 deletions components/UI/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,19 +159,20 @@ const Navbar: FunctionComponent = () => {
<>
<div className={"fixed w-full z-20 bg-background-nav top-0"}>
<div className={styles.navbarContainer}>
<div className="ml-4">
<Link href="/" className="cursor-pointer">
<div className="ml-4 ">
<Link href="/" className="cursor-pointer flex gap-2 items-center">
<img
className={styles.starknetIdLogo}
src={isMobile ? "/visuals/MbLogo.svg" : "/visuals/Logo.svg"}
src="/visuals/MbLogo.svg"
alt="Starknet.id Logo"
width={ isMobile ? 48 :170}
height={isMobile ? 48 :90}
width={ isMobile ? 40 :40}
height={isMobile ? 40 :90}
/>
<p className={`${styles.starknetId} text-[#454545] text-lg tracking-wide whitespace-nowrap text-nowrap leading-10 font-quickZap ${isMobile ? "hidden": "block"}`}>StarkNet ID</p>
</Link>
</div>
<div>
<ul className="hidden lg:flex uppercase items-center">
<ul className="hidden lg:flex gap-1 items-center">
<Link href="/identities">
<li className={styles.menuItem}>My Identities</li>
</Link>
Expand Down Expand Up @@ -200,7 +201,7 @@ const Navbar: FunctionComponent = () => {
: () => setShowWalletConnectModal(true)
}
variation={isConnected ? "white" : "primary"}
radius={isConnected ?'8px':'500px'}
radius="8px"
>
{isConnected ? (
<>
Expand Down Expand Up @@ -284,16 +285,17 @@ const Navbar: FunctionComponent = () => {
>
<div className="h-full flex flex-col">
<div className={styles.mobileNavBarHeader}>
<div>
<div className="flex gap-2 items-center">
<Link href="/" className="cursor-pointer">
<img
className="cursor-pointer"
src={isMobile ? "/visuals/MbLogo.svg" : "/visuals/Logo.svg"}
className={styles.starknetIdLogo}
src="/visuals/MbLogo.svg"
alt="Starknet.id Logo"
width={72}
height={72}
width={35}
height={30}
/>
</Link>
<p className={`${styles.starknetId} text-[#454545] text-lg tracking-wide whitespace-nowrap text-nowrap leading-10 font-quickZap ${isMobile ? "hidden": "block"}`}>StarkNet ID</p>
</div>

<div
Expand Down
Loading

0 comments on commit aadcd72

Please sign in to comment.