Commit 3bc1cf8 1 parent 56d97b7 commit 3bc1cf8 Copy full SHA for 3bc1cf8
File tree 3 files changed +21
-7
lines changed
3 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,12 @@ const Footer = styled.footer`
62
62
color: ${ ( { theme } ) => theme . colors . gray400 } ;
63
63
}
64
64
65
+ ${ media . md `
66
+ p {
67
+ display: none;
68
+ }
69
+ ` }
70
+
65
71
${ media . sm `
66
72
flex-direction: column;
67
73
gap: ${ ( { theme } ) => theme . sizes . xs } ;
@@ -140,6 +146,14 @@ function App() {
140
146
141
147
< Footer >
142
148
< h5 > © 2024 Mybucks.online MIT Licensed</ h5 >
149
+
150
+ < p >
151
+ Audited by{ " " }
152
+ < a href = "https://app.secure3.io/5c92d55acd" target = "_blank" >
153
+ < strong > Secure3</ strong >
154
+ </ a >
155
+ </ p >
156
+
143
157
< nav >
144
158
< ul >
145
159
< li >
Original file line number Diff line number Diff line change @@ -130,9 +130,9 @@ export const LOADING_PLACEHOLDER = "-----";
130
130
131
131
export const UNKNOWN_FACTS = [
132
132
"🌟 Brute-forcing takes millions of years!" ,
133
- "🔐 It runs only in your browser. Your password stays safe! " ,
134
- "📂 We never store or transmit your password." ,
133
+ "🔐 It runs only in your browser." ,
134
+ "📂 It never stores or transmits your password." ,
135
135
"🤫 Your account's origin remains anonymous." ,
136
136
"💼 Feel free to transfer your wallet anytime." ,
137
- "⚠️ Don't forget your password! There's no reset or recovery option." ,
137
+ "⚠️ There's no reset or recovery option." ,
138
138
] ;
Original file line number Diff line number Diff line change @@ -181,8 +181,8 @@ const SignIn = () => {
181
181
) ;
182
182
183
183
const unknownFact = useMemo (
184
- ( ) => UNKNOWN_FACTS [ Math . floor ( Math . random ( ) * UNKNOWN_FACTS . length ) ] ,
185
- [ ]
184
+ ( ) => UNKNOWN_FACTS [ Math . floor ( progress / 17 ) ] ,
185
+ [ progress ]
186
186
) ;
187
187
188
188
const onSubmit = async ( ) => {
@@ -227,8 +227,8 @@ const SignIn = () => {
227
227
</ LogoWrapper >
228
228
229
229
< Box >
230
- < Title > Open your account </ Title >
231
- < Caption > Keep your password strong and secure </ Caption >
230
+ < Title > Unlock your wallet </ Title >
231
+ < Caption > Use your own unique credentials </ Caption >
232
232
233
233
< div >
234
234
< Label htmlFor = "password" > Password</ Label >
You can’t perform that action at this time.
0 commit comments