1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
nft-preview-card/index.html

72 lines
2.1 KiB
HTML
Raw Normal View History

2024-07-11 04:34:54 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/favicon-32x32.png"
/>
<title>NFT preview card component</title>
<link rel="stylesheet" href="styles.css" />
</head>
2024-07-15 12:47:00 +00:00
<body class="flex min-h-dvh items-center justify-center bg-blue-800 p-6">
<main
class="max-w-[350px] space-y-6 rounded-2xl bg-blue-600 p-6 text-blue-200"
>
2024-08-24 10:55:40 +00:00
<div class="group relative cursor-pointer">
<div
class="invisible absolute flex h-full w-full items-center justify-center rounded-lg bg-cyan/50 group-hover:visible"
>
<img src="/images/icon-view.svg" alt="" />
</div>
<img
class="w-full rounded-lg"
src="/images/image-equilibrium.jpg"
alt=""
/>
</div>
2024-07-15 12:47:00 +00:00
<div class="space-y-4">
<h1
class="cursor-pointer text-2xl font-semibold text-white hover:text-cyan"
>
Equilibrium #3429
</h1>
<p class="text-lg font-light">
Our Equilibrium collection promotes balance and calm.
</p>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center justify-between gap-2">
<img src="/images/icon-ethereum.svg" alt="" />
<p class="font-semibold text-cyan">0.041 ETH</p>
</div>
<div class="flex items-center justify-between gap-2">
<img src="/images/icon-clock.svg" alt="" />
<p>3 days left</p>
</div>
</div>
<div class="space-y-4">
<hr class="border-blue-400" />
<div class="flex items-center justify-start gap-4">
<img
class="size-8 rounded-full border-[1px] border-white"
2024-08-24 10:55:40 +00:00
src="/images/image-avatar.png"
2024-07-15 12:47:00 +00:00
alt=""
/>
<p>
Creation of
<span class="cursor-pointer text-white hover:text-cyan"
>Jules Wyvern</span
>
</p>
</div>
</div>
</main>
2024-07-11 04:34:54 +00:00
</body>
</html>