2024-02-13 05:51:18 +04:00
|
|
|
---
|
|
|
|
|
// Import the necessary dependencies from individual component files
|
2024-02-14 05:47:32 +04:00
|
|
|
import LoginModal from "./ui/forms/LoginModal.astro";
|
|
|
|
|
import RegisterModal from "./ui/forms/RegisterModal.astro";
|
|
|
|
|
import RecoverModal from "./ui/forms/RecoverModal.astro";
|
2024-02-13 05:51:18 +04:00
|
|
|
import LoginBtn from "./ui/buttons/LoginBtn.astro";
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<LoginBtn />
|
|
|
|
|
|
|
|
|
|
<LoginModal />
|
|
|
|
|
|
|
|
|
|
<RegisterModal />
|
|
|
|
|
|
|
|
|
|
<RecoverModal />
|