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.
16 lines
473 B
Text
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 />
|