mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-24 21:38:09 +02:00
refactor: clean up login form and logo component
- Removed the "signing_in" text from the login form for a more streamlined user experience. - Updated the Logo component to include "select-none" class for improved styling and user interaction.
This commit is contained in:
parent
0b8bee0076
commit
b7130100aa
7 changed files with 7 additions and 12 deletions
|
|
@ -14,7 +14,7 @@ export const Logo = ({
|
|||
const image = (
|
||||
<Image
|
||||
src="/icon-128.svg"
|
||||
className={cn("dark:invert", className)}
|
||||
className={cn("select-none dark:invert", className)}
|
||||
alt="logo"
|
||||
width={128}
|
||||
height={128}
|
||||
|
|
@ -25,5 +25,9 @@ export const Logo = ({
|
|||
return image;
|
||||
}
|
||||
|
||||
return <Link href="/">{image}</Link>;
|
||||
return (
|
||||
<Link href="/" className="select-none">
|
||||
{image}
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue