Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 76d9e8e

Browse files
committed
feat: remove mascot from login and signup pages
1 parent d1f64b5 commit 76d9e8e

File tree

2 files changed

+1
-24
lines changed

2 files changed

+1
-24
lines changed

layout/Login/Login.tsx

-12
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,6 @@ function Login() {
4141
link="Register here"
4242
href="/signup"
4343
/>
44-
<div className="absolute bottom-0 right-60 hidden lg:block xl:hidden">
45-
<Motion.div
46-
initial={{ opacity: 0 }}
47-
animate={{ y: -15, opacity: 1 }}
48-
transition={{ duration: 1 }}
49-
>
50-
<Card img="/images/void.svg" alt="MascotFooter" inverted={false}>
51-
Just really awesome people here. Please login and prepare to be
52-
amazed. 🔮
53-
</Card>
54-
</Motion.div>
55-
</div>
5644
</div>
5745
</div>
5846
);

layout/SignUp/SignUp.tsx

+1-12
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,10 @@ function Signup() {
2727
return (
2828
<div className="min-h-screen select-none overflow-hidden bg-secondary">
2929
<Return componentStyle="sm:ml-14 mt-10 sm:mt-20 mb-6" />
30-
<div className="flex flex-col items-center justify-center sm:mt-16">
30+
<div className="mb-4 flex flex-col items-center justify-center sm:mt-16">
3131
<Title text="Sign up" />
3232
<SignUpForm courses={courses} />
3333
<Text text="Already have an account?" link="Login here" href="/login" />
34-
<div className="fixed bottom-0 right-60 hidden lg:block">
35-
<Motion.div
36-
initial={{ y: 30, opacity: 0 }}
37-
animate={{ y: 0, opacity: 1 }}
38-
transition={{ duration: 1 }}
39-
>
40-
<Card img="/images/void.svg" alt="MascotFooter" inverted={false}>
41-
Very restricted area. You just need to fill the form.
42-
</Card>
43-
</Motion.div>
44-
</div>
4534
</div>
4635
</div>
4736
);

0 commit comments

Comments
 (0)