diff --git a/.gitignore b/.gitignore index 6240da8..da64c7b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ dist/ # generated types .astro/ +.idea/ +.vscode/ # dependencies node_modules/ diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index b58b603..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/ScrewFast.iml b/.idea/ScrewFast.iml deleted file mode 100644 index 24643cc..0000000 --- a/.idea/ScrewFast.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 416694e..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 22a1505..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "recommendations": ["astro-build.astro-vscode"], - "unwantedRecommendations": [] -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index d642209..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "command": "./node_modules/.bin/astro dev", - "name": "Development server", - "request": "launch", - "type": "node-terminal" - } - ] -} diff --git a/src/components/Authentication.astro b/src/components/Authentication.astro index 2bc2334..7e0a8fd 100644 --- a/src/components/Authentication.astro +++ b/src/components/Authentication.astro @@ -1,8 +1,8 @@ --- // Import the necessary dependencies from individual component files -import LoginModal from "./ui/authentication/LoginModal.astro"; -import RegisterModal from "./ui/authentication/RegisterModal.astro"; -import RecoverModal from "./ui/authentication/RecoverModal.astro"; +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"; --- diff --git a/src/components/ClientsSection.astro b/src/components/ClientsSection.astro index 3822cfb..d099ef4 100644 --- a/src/components/ClientsSection.astro +++ b/src/components/ClientsSection.astro @@ -14,12 +14,12 @@ const subTitle: string =

{title}

-

+

{subTitle}

diff --git a/src/components/FAQ.astro b/src/components/FAQ.astro index 8a91c26..9162e0a 100644 --- a/src/components/FAQ.astro +++ b/src/components/FAQ.astro @@ -58,7 +58,7 @@ const faqs = [ ]; --- -
+
diff --git a/src/components/FooterSection.astro b/src/components/FooterSection.astro index abc2ba5..451aa6b 100644 --- a/src/components/FooterSection.astro +++ b/src/components/FooterSection.astro @@ -1,7 +1,7 @@ --- // Import the necessary dependencies from individual component files import FooterSocialLink from "./ui/links/FooterSocialLink.astro"; -import EmailFooterInput from "./ui/authentication/input/EmailFooterInput.astro"; +import EmailFooterInput from "./ui/forms/input/EmailFooterInput.astro"; // Footer Section Names const sectionOne: string = "Product"; @@ -56,73 +56,69 @@ const company: Links[] = [ ---