+
{testimonial.author}
{testimonial.role}
diff --git a/src/components/ui/authentication/LoginModal.astro b/src/components/ui/authentication/LoginModal.astro
deleted file mode 100644
index 2c7e70f..0000000
--- a/src/components/ui/authentication/LoginModal.astro
+++ /dev/null
@@ -1,83 +0,0 @@
----
-// Import the necessary dependencies from individual component files
-import GoogleBtn from "../buttons/GoogleBtn.astro";
-import AuthBtn from "../buttons/AuthBtn.astro";
-import EmailInput from "./input/EmailInput.astro";
-import PasswordInput from "./input/PasswordInput.astro";
-import Checkbox from "./input/Checkbox.astro";
-
-// Variables for customization of the LoginModal Component
-// Modal identifier
-const id = "hs-toggle-between-modals-login-modal";
-
-// Main heading
-const title: string = "Sign in";
-
-// Sub-heading text
-const subTitle: string = "Don't have an account yet?";
-
-// Text for registration button
-const registerBtn: string = "Sign up here";
-
-// Target link for registration button
-const registerBtnDataHS: string = "#hs-toggle-between-modals-register-modal";
----
-
-
-
-
-
-
-
-
- {title}
-
-
- {subTitle}
-
-
-
-
-
-
-
-
-
diff --git a/src/components/ui/authentication/RecoverModal.astro b/src/components/ui/authentication/RecoverModal.astro
deleted file mode 100644
index 39288a6..0000000
--- a/src/components/ui/authentication/RecoverModal.astro
+++ /dev/null
@@ -1,64 +0,0 @@
----
-// Import the necessary dependencies from individual component files
-import AuthBtn from "../buttons/AuthBtn.astro";
-import EmailInput from "./input/EmailInput.astro";
-
-// Variables to customize the RecoverModal Component
-
-// Modal identifier
-const id = "hs-toggle-between-modals-recover-modal";
-
-// Main heading
-const title: string = "Forgot password?";
-
-// Sub-heading text
-const subTitle: string = "Remember your password?";
-
-// Text and target link for the login button
-const loginBtn: string = "Sign in here";
-const loginBtnDataHS: string = "#hs-toggle-between-modals-login-modal";
----
-
-
-
-
-
-
-
-
- {title}
-
-
- {subTitle}
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/ui/authentication/RegisterModal.astro b/src/components/ui/authentication/RegisterModal.astro
deleted file mode 100644
index 9aa0ce0..0000000
--- a/src/components/ui/authentication/RegisterModal.astro
+++ /dev/null
@@ -1,92 +0,0 @@
----
-// Import the necessary dependencies from individual component files
-import GoogleBtn from "../buttons/GoogleBtn.astro";
-import AuthBtn from "../buttons/AuthBtn.astro";
-import EmailInput from "./input/EmailInput.astro";
-import PasswordInput from "./input/PasswordInput.astro";
-import Checkbox from "./input/Checkbox.astro";
-
-// Variables to customize the RegisterModal Component
-
-// Modal identifier
-const id = "hs-toggle-between-modals-register-modal";
-
-// Main title
-const title: string = "Sign up";
-
-// Subtitle text
-const subTitle: string = "Already have an account?";
-
-// Text and target link for the login button
-const loginBtn: string = "Sign in here";
-const loginBtnDataHS: string = "#hs-toggle-between-modals-login-modal";
----
-
-
-
-
-
-
-
-
- {title}
-
-
- {subTitle}
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/ui/authentication/input/Checkbox.astro b/src/components/ui/authentication/input/Checkbox.astro
deleted file mode 100644
index 8c4aebb..0000000
--- a/src/components/ui/authentication/input/Checkbox.astro
+++ /dev/null
@@ -1,16 +0,0 @@
----
-const { label = "Remember me", id } = Astro.props;
-
-interface Props {
- label?: string;
- id?: string;
-}
----
-
diff --git a/src/components/ui/authentication/input/EmailFooterInput.astro b/src/components/ui/authentication/input/EmailFooterInput.astro
deleted file mode 100644
index b88b590..0000000
--- a/src/components/ui/authentication/input/EmailFooterInput.astro
+++ /dev/null
@@ -1,29 +0,0 @@
----
-const { label = "Search", title = "Subscribe" } = Astro.props;
-
-interface Props {
- label?: string;
- title?: string;
-}
----
-
-
diff --git a/src/components/ui/authentication/input/EmailInput.astro b/src/components/ui/authentication/input/EmailInput.astro
deleted file mode 100644
index d501fdc..0000000
--- a/src/components/ui/authentication/input/EmailInput.astro
+++ /dev/null
@@ -1,42 +0,0 @@
----
-const { label = "Email address" } = Astro.props;
-
-interface Props {
- label?: string;
-}
----
-
-
-
-
-
- Please include a valid email address so we can get back to you
-
-
diff --git a/src/components/ui/authentication/input/PasswordInput.astro b/src/components/ui/authentication/input/PasswordInput.astro
deleted file mode 100644
index a7be111..0000000
--- a/src/components/ui/authentication/input/PasswordInput.astro
+++ /dev/null
@@ -1,66 +0,0 @@
----
-const {
- label = "Password",
- forgot,
- id,
- content,
- aria = "password-error",
-} = Astro.props;
-
-interface Props {
- label?: string;
- forgot?: boolean;
- id?: string;
- content?: string;
- aria?: string;
-}
----
-
-
-
-
- {
- forgot ? (
-
- ) : (
- ""
- )
- }
-
-
-
- {content}
-
-
diff --git a/src/components/ui/blocks/AccordionItem.astro b/src/components/ui/blocks/AccordionItem.astro
index 2e55267..20b67e6 100644
--- a/src/components/ui/blocks/AccordionItem.astro
+++ b/src/components/ui/blocks/AccordionItem.astro
@@ -15,7 +15,7 @@ interface Props {
id={id}
>