Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 8 additions & 25 deletions src/app/token/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ export default function TokenPage() {
})}{" "}
<span className="text-background/80">PLOT</span>
</div>
{tokenInfo?.price && parseFloat(formattedBalance) > 0 && (
<div className="text-background/60 mt-1 text-sm">
${(parseFloat(formattedBalance) * tokenInfo.price).toLocaleString(undefined, {
minimumFractionDigits: 2,
maximumFractionDigits: 2,
})} USD
</div>
)}
</div>
)}
</div>
Expand Down Expand Up @@ -107,31 +115,6 @@ export default function TokenPage() {
{/* Swap Interface */}
<SwapInterface />

{/* How to Get PLOT */}
<div className="border-border rounded border p-5">
<h3 className="text-foreground text-sm font-bold mb-3">How to Get PLOT</h3>
<div className="space-y-2">
<div className="flex items-start gap-3">
<span className="text-accent text-sm">&#8226;</span>
<p className="text-muted text-sm">
<span className="text-foreground font-semibold">Buy via Mint Club</span> — purchase PLOT on the bonding curve using HUNT tokens.
</p>
</div>
<div className="flex items-start gap-3">
<span className="text-accent text-sm">&#8226;</span>
<p className="text-muted text-sm">
<span className="text-foreground font-semibold">Sell story tokens</span> — selling any storyline token returns PLOT to your wallet.
</p>
</div>
<div className="flex items-start gap-3">
<span className="text-accent text-sm">&#8226;</span>
<p className="text-muted text-sm">
<span className="text-foreground font-semibold">Use the Zap</span> — buy story tokens with ETH or HUNT and the zap contract handles PLOT conversion automatically.
</p>
</div>
</div>
</div>

{/* Token Information */}
<div className="border-border rounded border p-5">
<h3 className="text-foreground text-sm font-bold mb-4">Token Information</h3>
Expand Down
Loading