Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
feat: brand discoin
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Gianelloni <[email protected]>
  • Loading branch information
wolf31o2 committed Sep 20, 2023
1 parent 8c7f87e commit d89b5c0
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 24 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vm-frontend
# discoin-vm-frontend

Welcome to the Silk Toad VM Frontend!
Welcome to the discoin VM Frontend!

## About
The code is split into two projects, an Express API which serves as a backend
Expand Down
Binary file modified client/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/favicon.ico
Binary file not shown.
14 changes: 7 additions & 7 deletions client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
rel="stylesheet"
/>

<meta name="apple-mobile-web-app-title" content="The Silk Toad Claims" />
<meta name="application-name" content="The Silk Toad Claims" />
<meta name="apple-mobile-web-app-title" content="discoin claims" />
<meta name="application-name" content="discoin claims" />
<meta name="msapplication-TileColor" content="#121212" />
<meta name="theme-color" content="#121212" />
<meta
name="description"
content="Cardano native token claims portal for The Silk Toad"
content="Claims portal for discoin"
/>
<meta
property="og:image"
Expand All @@ -44,9 +44,9 @@
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://claim.silktoad.io/" />
<meta property="og:title" content="The Silk Toad Claims" />
<meta property="og:description" content="Cardano native token claims portal for The Silk Toad" />
<meta property="og:url" content="https://discoin.blinklabs.io/" />
<meta property="og:title" content="discoin claims" />
<meta property="og:description" content="Claims portal for discoin" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -61,7 +61,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>The Silk Toad Claims</title>
<title>discoin claims</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file modified client/public/logo-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/logo-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions client/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "The Silk Toad Claims",
"short_name": "The Silk Toad Claims",
"name": "discoin claims",
"short_name": "discoin claims",
"icons": [
{
"src": "logo-192x192.png",
Expand Down
Binary file modified client/public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
3 changes: 2 additions & 1 deletion client/src/components/Claim/ClaimFeeTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export default function ClaimFeeTooltip() {
icon={faStar}
/>
<div className="tooltip w-64 p-3.5 rounded-2xl right-5 bottom-5 absolute">
A fee is applied to tokens distributed by this service.
A fee is applied to tokens distributed by this service. This fee goes to
the Neo Miami treasury.
</div>
</span>
);
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Claim/TransactionDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ const TransactionDetail = ({
{lovelaceToAda(settings.claimFee)} ADA
</div>
<div className="tooltip-activator cursor-help text-right">
Fee <FontAwesomeIcon icon={faQuestionCircle} />
Community discoin fee <FontAwesomeIcon icon={faQuestionCircle} />
<div className="tooltip p-3.5 rounded-2xl right-5 bottom-4 absolute min-w-52 max-w-64">
Fee is applied to tokens that use this service
Community fee for claiming discoin which goes to the Neo Miami treasury
</div>
</div>
</div>
Expand Down
12 changes: 6 additions & 6 deletions client/src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useCallback } from "react";
import { useDispatch, useSelector } from "react-redux";
import { Link } from "react-router-dom";
import logoDark from "src/assets/silktoad.png";
import logoLight from "src/assets/silktoad.png";
import logoDark from "src/assets/discoin.png";
import logoLight from "src/assets/discoin.png";
import { Blockchain, Themes } from "src/entities/common.entities";
import { toggleMenu, toggleTheme } from "src/reducers/globalSlice";
import { RootState } from "src/store";
Expand Down Expand Up @@ -42,9 +42,9 @@ function Header() {
<img
src={theme === Themes.dark ? logoDark : logoLight}
className="h-10 logo"
alt="silktoad logo"
alt="discoin logo"
></img>
<div className="m-auto ml-5 text-4xl">The Silk Toad</div>
<div className="m-auto ml-5 text-4xl">discoin claims</div>
</div>
</Link>
<div className="flex flex-row gap-4 items-center ml-auto">
Expand Down Expand Up @@ -73,9 +73,9 @@ function Header() {
<img
src={theme === Themes.dark ? logoDark : logoLight}
className="h-10 logo"
alt="silktoad logo"
alt="discoin logo"
></img>
<div className="m-auto mr-2.5 text-4xl">The Silk Toad</div>
<div className="m-auto mr-2.5 text-4xl">discoin claims</div>
</div>
<div className="w-14 h-full ml-auto">
{/* No blockchain selector <BlockchainSelector isMobile={true}></BlockchainSelector> */}
Expand Down
4 changes: 2 additions & 2 deletions client/src/pages/Loading/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import logo from "src/assets/silktoad.png";
import logo from "src/assets/discoin.png";
import "./index.scss";

const Loading = () => {
return (
<div className="px-5 py-14 pt-40 flex flex-col items-center justify-center">
<div className="w-24 mb-5 spinning-logo">
<img src={logo} alt="silktoad logo"></img>
<img src={logo} alt="discoin logo"></img>
</div>
<div>Loading...</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions server/public/json/popup.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Support and Decide discoin's Future!",
"text": "DISCO is available now on Minswap! Discoin is the currency of Neo Miami, a community inspired by the lore of Disco Solaris.",
"title": "Support and decide Neo Miami's future!",
"text": "discoin is the currency of Neo Miami, a community inspired by the lore of Disco Solaris, and is rewarded to holders of the Disco Solaris PFP NFTs or discoin. DISCO is now available on Minswap!",
"buttonText": "Buy DISCO",
"buttonLink": "https://app.minswap.org/swap?currencySymbolA=&tokenNameA=&currencySymbolB=5612bee388219c1b76fd527ed0fa5aa1d28652838bcab4ee4ee63197&tokenNameB=446973636f696e"
}

0 comments on commit d89b5c0

Please sign in to comment.