achat-maison-albi-fr/src/components/sections/Authentication.astro
Emil Gulamov 58678ed276 Update import paths after directory restructure
All import paths to UI elements in various components have been updated following a directory restructure. The change helps to better organize components within the 'sections' and 'ui' directories.
2024-02-19 18:14:31 +04:00

16 lines
473 B
Text

---
// Import the necessary components from their respective component files
import LoginModal from "../ui/forms/LoginModal.astro";
import RegisterModal from "../ui/forms/RegisterModal.astro";
import RecoverModal from "../ui/forms/RecoverModal.astro";
import LoginBtn from "../ui/buttons/LoginBtn.astro";
---
<!-- Login Button -->
<LoginBtn />
<!-- Login Modal -->
<LoginModal />
<!-- Register Modal -->
<RegisterModal />
<!-- Password Recovery Modal -->
<RecoverModal />