feat(auth): polish login/register with logo, gradients and animations

This commit is contained in:
2026-02-28 22:59:08 +01:00
parent bc71a439f2
commit ebb6a28c5a
5 changed files with 221 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
export default function Logo() {
return (
<svg viewBox="0 0 48 48" className="logo-mark" aria-hidden="true">
<path d="M12 16h4v16h-4zM20 12h8v24h-8zM32 16h4v16h-4z" fill="currentColor"/>
<rect x="8" y="20" width="4" height="8" fill="currentColor"/>
<rect x="36" y="20" width="4" height="8" fill="currentColor"/>
</svg>
);
}