Skip to content

Commit

Permalink
Fix abi ninja logo width and height
Browse files Browse the repository at this point in the history
  • Loading branch information
portdeveloper committed Jun 18, 2024
1 parent d1a2656 commit b8a6753
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,21 +175,19 @@ const Home: NextPage = () => {
>
{tabValue === TabName.verifiedContract ? (
<div className="my-16 flex flex-col items-center justify-center">
<Image src="/logo_inv.svg" alt="logo" width={128} height={128} className="mb-4" />
<Image src="/logo_inv.svg" alt="logo" width={119} height={87} className="mb-4" />{" "}
<h2 className="mb-0 text-5xl font-bold">ABI Ninja</h2>
<p>Interact with any contract on Ethereum</p>
<div className="mt-4">
<NetworksDropdown onChange={option => setNetwork(option ? option.value.toString() : "")} />
</div>

<div className="w-10/12 my-8">
<AddressInput
placeholder="Contract address"
value={verifiedContractAddress}
onChange={setVerifiedContractAddress}
/>
</div>

<button
className="btn btn-primary min-h-fit h-10 px-4 text-base font-semibold border-2 hover:bg-neutral hover:text-primary"
onClick={handleLoadContract}
Expand Down

0 comments on commit b8a6753

Please sign in to comment.