--- // Import necessary components from individual files import EmailInput from "./input/EmailInput.astro"; import PasswordInput from "./input/PasswordInput.astro"; import Checkbox from "./input/Checkbox.astro"; import GoogleBtn from "../buttons/GoogleBtn.astro"; import AuthBtn from "../buttons/AuthBtn.astro"; // Config object for customization of the component const config = { id: "hs-toggle-between-modals-register-modal", // Modal identifier title: "Sign up", // Main heading subTitle: "Already have an account?", // Sub-heading text loginBtn: "Sign in here", // Text for login button loginBtnDataHS: "#hs-toggle-between-modals-login-modal", // Target link for login button }; ---