Skip to content

Commit

Permalink
Update Intro
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Mar 17, 2024
1 parent bfef58b commit 112006a
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const App = () => {
return (
<div className="w-full h-full min-h-screen bg-light-background-secondary dark:bg-dark-background-secondary px-4">
<div className="mx-auto w-full max-w-3xl space-y-4 py-8">
<div className="card w-full p-4">
<div className="card w-full p-4 space-y-2">
<h1 className="text-xl">UltraBulk.eth</h1>
<p>
A lightweight and gas-optimized smart contract focused
Expand All @@ -28,9 +28,18 @@ export const App = () => {
</div>
</div>
<div className="flex gap-4 w-full flex-col md:flex-row">
<div className="card w-full p-4">Commit Fee</div>
<div className="card w-full p-4">Registration Fee</div>
<div className="card w-full p-4">Renewal Fee</div>
<div className="card w-full px-4 py-2">
<div>Commit Fee</div>
<div className="text-right font-bold text-lg">0.00</div>
</div>
<div className="card w-full px-4 py-2">
<div>Registration Fee</div>
<div className="text-right font-bold text-lg">0.00</div>
</div>
<div className="card w-full px-4 py-2">
<div>Renewal Fee</div>
<div className="text-right font-bold text-lg">0.00</div>
</div>
</div>
<TransactionHistory contractAddress={resolverAddress} />
</div>
Expand Down

0 comments on commit 112006a

Please sign in to comment.