Skip to content

Commit 3bc1cf8

Browse files
committed
update sign-in page
1 parent 56d97b7 commit 3bc1cf8

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

src/App.jsx

+14
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ const Footer = styled.footer`
6262
color: ${({ theme }) => theme.colors.gray400};
6363
}
6464
65+
${media.md`
66+
p {
67+
display: none;
68+
}
69+
`}
70+
6571
${media.sm`
6672
flex-direction: column;
6773
gap: ${({ theme }) => theme.sizes.xs};
@@ -140,6 +146,14 @@ function App() {
140146

141147
<Footer>
142148
<h5>&copy; 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+
143157
<nav>
144158
<ul>
145159
<li>

src/lib/conf.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ export const LOADING_PLACEHOLDER = "-----";
130130

131131
export const UNKNOWN_FACTS = [
132132
"🌟 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.",
135135
"🤫 Your account's origin remains anonymous.",
136136
"💼 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.",
138138
];

src/pages/Signin/index.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ const SignIn = () => {
181181
);
182182

183183
const unknownFact = useMemo(
184-
() => UNKNOWN_FACTS[Math.floor(Math.random() * UNKNOWN_FACTS.length)],
185-
[]
184+
() => UNKNOWN_FACTS[Math.floor(progress / 17)],
185+
[progress]
186186
);
187187

188188
const onSubmit = async () => {
@@ -227,8 +227,8 @@ const SignIn = () => {
227227
</LogoWrapper>
228228

229229
<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>
232232

233233
<div>
234234
<Label htmlFor="password">Password</Label>

0 commit comments

Comments
 (0)