Skip to content
Open
Show file tree
Hide file tree
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
Binary file added public/img/vult/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion src/app/components/vult/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ export function Sections() {
<ul className="list-vultisig">
{vultCopy.airdrop.img.map((img, index) => (
<li key={index}>
<img src={img.src} alt="Vultisig logo" />
{img.url? (
<a href={img.url} target="_blank">
<img src={img.src} alt="Vultisig logo" />
</a>
) : (
<img src={img.src} alt="Vultisig logo" />
)}
</li>
))}
</ul>
Expand Down
17 changes: 12 additions & 5 deletions src/app/copy/Vult.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { url } from "inspector";

export const vultCopy = {
header: {
title: "THE $VULT<br>TOKEN",
Expand All @@ -19,15 +21,20 @@ export const vultCopy = {
text: "$VULT is a cash-back application token (CBAT) and can be staked for $USDC.",
},
airdrop: {
main_title: "how to participate in THE <br><span class='vult-gradient-txt'>$5M</span> VULTISIG AIRDROP",
main_title:
"how to participate in THE <br><span class='vult-gradient-txt'>$5M</span> VULTISIG AIRDROP",
details: {
title: "current airdrop value",
},
img: [
{ src: "/img/vult/1.png" },
{ src: "/img/vult/2.png" },
{ src: "/img/vult/3.png" },
{ src: "/img/vult/4.png" },
{ src: "/img/vult/1.png", url: "" },
{ src: "/img/vult/2.png", url: "" },
{ src: "/img/vult/3.png", url: "" },
{ src: "/img/vult/4.png", url: "" },
{
src: "/img/vult/5.png",
url: "https://t.me/vultirefbot/app?startapp=ref_a25542b3-ebc5-441a-a85b-f87956cb01cc",
},
],
Join_the_AirDrop: "Join the AirDrop",
Join_the_AirDrop_URL: "https://airdrop.vultisig.com/",
Expand Down