Skip to content

Commit a8ea7a4

Browse files
authored
Merge pull request #103 from HVbajoria/master
Enhance logo interactivity on login page
2 parents 997798f + 9b64a9c commit a8ea7a4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

frontend/src/components/Layout.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ const Layout = () => {
3131
{/* 2. Wrap the span in a Link to the dashboard */}
3232
<span
3333
onClick={handleClick}
34-
className="font-bold text-xl text-blue-600 dark:text-blue-400 cursor-pointer"
34+
className="font-bold text-xl text-blue-600 dark:text-blue-400 cursor-pointer transition-all duration-500 hover:scale-105 hover:drop-shadow-lg hover:text-blue-500 dark:hover:text-blue-300"
35+
title="Go to home"
3536
>
3637
Paisable
3738
</span>

frontend/src/pages/LoginPage.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export default function LoginPage() {
3232

3333
return (
3434
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900 px-4">
35-
<Link to="/" className="text-4xl font-bold text-blue-600 dark:text-blue-400 font-montserrat mb-8">
35+
36+
<Link to="/" className="text-4xl font-bold text-blue-600 dark:text-blue-400 font-montserrat mb-8 transition-all duration-500 hover:scale-105 hover:drop-shadow-lg hover:text-blue-500 dark:hover:text-blue-300 cursor-pointer" title="Go to home">
3637
Paisable
3738
</Link>
3839

frontend/src/pages/RegisterPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default function RegisterPage() {
5757

5858
return (
5959
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900 px-4">
60-
<Link to="/" className="text-4xl font-bold text-blue-600 dark:text-blue-400 font-montserrat mb-8">
60+
<Link to="/" className="text-4xl font-bold text-blue-600 dark:text-blue-400 font-montserrat mb-8 transition-all duration-500 hover:scale-105 hover:drop-shadow-lg hover:text-blue-500 dark:hover:text-blue-300 cursor-pointer" title="Go to home">
6161
Paisable
6262
</Link>
6363
<div className="px-8 py-6 text-left bg-white dark:bg-gray-800 shadow-lg rounded-lg w-full max-w-md">

0 commit comments

Comments
 (0)