Skip to content

Commit 2c4019f

Browse files
committed
Removed google font loading
Replaced Rubik font for Verdadna Named it REKT
1 parent b2280f4 commit 2c4019f

File tree

14 files changed

+21
-38
lines changed

14 files changed

+21
-38
lines changed

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ The wallet uses the Avalanche Explorer API to display wallet transaction history
5555

5656
WARNING: This history might be out of order and incomplete.
5757

58-
## Browser Support
59-
60-
We suggest using Google Chrome to view the Avalanche Wallet website.
61-
6258
### Firefox and https
6359

6460
Firefox does not allow https requests to localhost. But the Avalanche Wallet uses https by default, so we will need to change this to http. Make this switch by editing the `vue.config.js` file in the root directory and change

public/index.html

+4-11
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
7-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
8-
<title>Fastest Performing and Secure DeFi Wallet | Avalanche Wallet</title>
9-
<meta property="og:title" content="Fastest Performing and Secure DeFi Wallet | Avalanche Wallet" data-vmid="og:title" />
10-
11-
<meta name="description" content="Avalanche wallet is a simple, highly secure, non-custodial crypto wallet for storing AVAX." data-vmid="description">
12-
<meta property="og:description" content="Avalanche wallet is a simple, highly secure, non-custodial crypto wallet for storing AVAX." data-vmid="og:description" />
7+
<title>REKT Wallet</title>
8+
<meta property="og:title" content="REKT Wallet" data-vmid="og:title" />
9+
<meta name="description" content="REKT wallet is a simple, highly secure, non-custodial crypto wallet for storing AVAX." data-vmid="description">
10+
<meta property="og:description" content="REKT wallet is a simple, highly secure, non-custodial crypto wallet for storing AVAX." data-vmid="og:description" />
1311
<meta property="og:image" content="<%= BASE_URL %>wallet_og.png" />
1412
<meta property="og:url" content="<%= BASE_URL %>" />
1513
<meta property="og:type" content="website" />
16-
17-
1814
<style>
1915
body{
2016
background-color: #fff;
@@ -31,7 +27,6 @@
3127
object-fit: contain;
3228
}
3329
</style>
34-
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Rubik|DM+Sans&display=swap" rel="stylesheet">
3530
</head>
3631
<body>
3732
<noscript>
@@ -41,7 +36,5 @@
4136
<img rel="preload" src="/gif/loading_0.gif">
4237
</div>
4338
<div id="app"></div>
44-
45-
<!-- built files will be auto injected -->
4639
</body>
4740
</html>

src/App.vue

+5-5
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,21 @@ export default {
7878
vmid: 'description',
7979
name: 'description',
8080
content:
81-
'Electron Avalanche wallet is a simple, standalone, highly secure, non-custodial crypto wallet for storing AVAX.',
81+
'REKT Wallet is a simple, standalone, highly secure, non-custodial crypto wallet for storing AVAX.',
8282
},
8383
{
8484
vmid: 'og:description',
8585
name: 'description',
8686
content:
87-
'Electron Avalanche wallet is a simple, standalone, highly secure, non-custodial crypto wallet for storing AVAX.',
87+
'REKT Wallet is a simple, standalone, highly secure, non-custodial crypto wallet for storing AVAX.',
8888
},
8989
{
9090
vmid: 'og:title',
9191
name: 'og:title',
92-
content: 'Electron Avalanche Wallet',
92+
content: 'REKT Wallet',
9393
},
9494
],
95-
title: 'Electron Avalanche Wallet',
95+
title: 'REKT Wallet',
9696
titleTemplate: '%s',
9797
},
9898
}
@@ -155,7 +155,7 @@ p {
155155
text-align: left;
156156
color: var(--primary-color);
157157
background-color: var(--bg) !important;
158-
font-family: 'Rubik', sans-serif;
158+
font-family: 'Verdana', sans-serif;
159159
transition-duration: 0.2s;
160160
}
161161

src/_main.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ h1,
302302
h2,
303303
h3,
304304
h4 {
305-
font-family: 'Rubik', sans-serif;
305+
font-family: 'Verdana', sans-serif;
306306
}
307307

308308
.button_primary {

src/background.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
3-
Electron Avalanche Wallet
3+
REKT Wallet
44
@REKTBuildr
55
66
*/

src/components/CreateWalletWorkflow/CreateWallet.vue

-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
>
2626
{{ $t('create.submit') }}
2727
</button>
28-
<!-- <TorusGoogle class="torus_but"></TorusGoogle>-->
2928
</div>
3029
<ToS></ToS>
3130

@@ -128,7 +127,6 @@ import 'reflect-metadata'
128127
import { Vue, Component, Prop } from 'vue-property-decorator'
129128
import TextDisplayCopy from '@/components/misc/TextDisplayCopy.vue'
130129
import Spinner from '@/components/misc/Spinner.vue'
131-
// import TorusGoogle from "@/components/Torus/TorusGoogle.vue";
132130
import MnemonicDisplay from '@/components/misc/MnemonicDisplay.vue'
133131
import CopyText from '@/components/misc/CopyText.vue'
134132
import * as bip39 from 'bip39'
@@ -142,11 +140,9 @@ import MnemonicPhrase from '@/js/wallets/MnemonicPhrase'
142140
components: {
143141
ToS,
144142
CopyText,
145-
// RememberKey,
146143
TextDisplayCopy,
147144
MnemonicDisplay,
148145
Spinner,
149-
// TorusGoogle,
150146
VerifyMnemonic2,
151147
MnemonicCopied,
152148
},

src/components/Navbar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div id="nav">
33
<ConfirmLogout ref="logout"></ConfirmLogout>
4-
<router-link to="/" class="text-logo">AVAX Wallet</router-link>
4+
<router-link to="/" class="text-logo">REKT Wallet</router-link>
55
<v-spacer></v-spacer>
66

77
<div class="buts_right">

src/components/wallet/Sidebar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="wallet_sidebar">
33
<div class="stick">
4-
<div class="brand-text">AVAX Wallet</div>
4+
<div class="brand-text">REKT Wallet</div>
55
<div class="links">
66
<router-link to="/wallet" class="wallet_link">
77
<img v-if="$root.theme === 'day'" src="@/assets/sidebar/portfolio_nav.png" />

src/components/wallet/TopCards/BalanceCard/BalanceCard.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ h4 {
417417
font-size: 2.4em;
418418
white-space: normal;
419419
/*font-weight: bold;*/
420-
font-family: Rubik !important;
420+
font-family: Verdana !important;
421421
422422
span {
423423
font-size: 0.8em;

src/locales/de.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"error_word": "Deine eingegebene Mnemonic Phrase, stimmt mit der aktuellen Phrase nicht überein."
7979
},
8080
"top": {
81-
"title1": "Hergeleitete AVAX Wallet Adresse",
81+
"title1": "Hergeleitete REKT Wallet Adresse",
8282
"title2": "Guthaben",
8383
"title3": "Subnetz",
8484
"title4": "Netzwerk",
@@ -101,7 +101,7 @@
101101
"collectibles": "Kollektion"
102102
},
103103
"address": {
104-
"derived": "Abgeleitete AVAX Wallet-Adresse",
104+
"derived": "Abgeleitete REKT Wallet-Adresse",
105105
"desc": "Dies ist Ihre Adresse, um Gelder zu erhalten. Ihre Adresse wird sich nach jeder Einzahlung ändern."
106106
}
107107
},
@@ -425,4 +425,4 @@
425425
"access": "Auf Wallet zugreifen",
426426
"create": "Eine neue Wallet erstellen"
427427
}
428-
}
428+
}

src/locales/en.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cookie_desc": "We use cookies to develop improvements and enhance your experience. To find out more, read our"
1212
},
1313
"home": {
14-
"desc": "Electron Avalanche Wallet is a simple, standalone, secure, non-custodial wallet for storing Avalanche assets.",
14+
"desc": "REKT Wallet is a simple, standalone, secure, non-custodial wallet for storing Avalanche assets.",
1515
"access": {
1616
"title": "Welcome Back!",
1717
"desc": "Access your existing Avalanche wallet here.",
@@ -733,7 +733,7 @@
733733
"nav": {
734734
"access": "Access Wallet",
735735
"create": "Create New Wallet",
736-
"support": "Support Forum"
736+
"support": "REKT Forum"
737737
},
738738
"misc": {
739739
"balance": "Balance"

src/plugins/vuetify.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import {
6464
faGlasses,
6565
} from '@fortawesome/free-solid-svg-icons'
6666

67-
import { faBtc, faGoogle } from '@fortawesome/free-brands-svg-icons'
67+
import { faBtc } from '@fortawesome/free-brands-svg-icons'
6868
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
6969

7070
library.add(
@@ -105,7 +105,6 @@ library.add(
105105
faCog,
106106
faSearch,
107107
faListOl,
108-
faGoogle,
109108
faSpinner,
110109
faInfoCircle,
111110
faLink,

src/views/access/Menu.vue

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
XPUB (Readonly)
3232
<span><fa icon="glasses"></fa></span>
3333
</router-link>
34-
<!-- <TorusGoogle class="option button_primary" text="Google"></TorusGoogle>-->
3534
</div>
3635
</div>
3736

vue.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
},
2525
},
2626
pwa: {
27-
name: 'AVAX Wallet',
27+
name: 'REKT Wallet',
2828
manifestOptions: {
2929
start_url: '/',
3030
},

0 commit comments

Comments
 (0)