Skip to content

Instantly share code, notes, and snippets.

@uicodee
Created October 9, 2024 05:20
Show Gist options
  • Select an option

  • Save uicodee/96bef302698d392de57de332f5020d96 to your computer and use it in GitHub Desktop.

Select an option

Save uicodee/96bef302698d392de57de332f5020d96 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
<title>Blum</title>
</head>
<body
class="flex flex-col justify-between h-full px-4 py-5 text-white bg-black"
>
<div class="flex flex-col">
<div
class="flex items-center justify-between w-full bg-[#1c1c1e] rounded-lg p-3"
>
<div class="flex gap-x-4">
<img
src="https://s3.timeweb.com/2628aad9-67413717-083e-4baa-94e9-20cf6acb1ec4/ebeed4ca-01cd-42b9-9d23-a6851fcdda2f.gif"
alt=""
class="w-10 h-10"
/>
<div class="flex flex-col">
<span class="font-semibold">Tribes</span>
<p class="text-sm text-gray-400">Compete for rewards</p>
</div>
</div>
<button class="bg-[#282828] px-3 rounded-full text-[10px] h-8">
Open
</button>
</div>
<div class="flex flex-col items-center mt-6 gap-y-3">
<img
class="w-20 h-20 rounded-full"
src="https://t.me/i/userpic/320/uicode.jpg"
alt=""
/>
<span class="font-semibold text-xl">uicode</span>
</div>
<div class="flex justify-center mt-10">
<h2 class="text-5xl">670</h2>
</div>
</div>
<div class="flex justify-between px-6">
<div
class="flex flex-col text-center items-center gap-y-1 text-sm font-light"
>
<i data-lucide="home"></i>
Home
</div>
<div
class="flex flex-col text-center items-center gap-y-1 text-sm font-light"
>
<i data-lucide="circle-dollar-sign"></i>
Earn
</div>
<div
class="flex flex-col text-center items-center gap-y-1 text-sm font-light"
>
<i data-lucide="users-round"></i>
Frens
</div>
<div
class="flex flex-col text-center items-center gap-y-1 text-sm font-light"
>
<i data-lucide="wallet"></i>
Wallet
</div>
</div>
<script src="https://unpkg.com/lucide@latest"></script>
<script>
lucide.createIcons();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment