forked from kodadot/nft-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kodadot#10112 from Jarsen136/issue-10111
feat: Farcaster frame mint is live - notification on landing page
- Loading branch information
Showing
4 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<a | ||
v-safe-href="config.url" | ||
target="_blank" | ||
class="hover:text-text-color flex items-center p-2 gap-[10px] bg-background-color border border-text-color rounded-[1.5rem]"> | ||
<img :src="config.image" class="w-[38px] h-[38px] rounded-[14px]" /> | ||
|
||
<div | ||
class="bg-k-red-accent-2 flex flex-wrap gap-2 px-3 py-2 rounded-[14px]"> | ||
<div class="font-bold">{{ config.name }}</div> | ||
<div class="capitalize">{{ $t('landing.farcasterMintLive') }}</div> | ||
</div> | ||
<NeoIcon icon="arrow-right" /> | ||
</a> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { NeoIcon } from '@kodadot1/brick' | ||
defineProps<{ | ||
config: { | ||
url: string | ||
image: string | ||
name: string | ||
} | ||
}>() | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"name": "Basescapes", | ||
"image": | ||
"https://imagedelivery.net/jk5b6spi_m_-9qC4VTnjpg/bafybeiaystlm6xszy3eq5ovqgqjwxwgpeztdrvbsixiqx6me56yxp7efrq/public", | ||
"url": "https://warpcast.com/th0mas-art/0x47bfc921" | ||
} |