feat: add modal login gacha page

This commit is contained in:
egagofur
2025-03-29 17:26:54 +07:00
parent 88c71ccdfa
commit 340bd8c4bf
4 changed files with 261 additions and 13 deletions
+16
View File
@@ -40,6 +40,14 @@ export const Navbar: FC = (): ReactElement => {
<Link to="#">Merch Gacha</Link>
</Button>
</li>
<li>
<Button
size="md"
className="lg:text-[19px] lg:max-h-[44px] text-neutral-50 hover:text-neutral-200 transition-colors"
>
<Link to="/login">Login</Link>
</Button>
</li>
</ul>
<button
className={`md:hidden duration-200 ${
@@ -69,6 +77,14 @@ export const Navbar: FC = (): ReactElement => {
Merch Gacha
</Link>
</li>
<li>
<Link
to="#"
className="block text-gray-600 transition-colors px-4 py-2 text-center font-semibold"
>
Login
</Link>
</li>
</ul>
</div>
)}