add login, register layout

This commit is contained in:
smanylov
2025-11-27 13:48:24 +07:00
parent fecb811a5c
commit 5c6a235ece
9 changed files with 420 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
import style from "./ui.module.scss"
export default function LogoIcon() {
return (
<div className={`${style['logo-icon']}`}>
<svg viewBox="0 0 24 24">
<path d="M12 2L2 7v10c0 5.55 3.84 9.74 9 11 5.16-1.26 9-5.45 9-11V7l-10-5z"></path>
</svg>
</div>
)
}