diff --git a/src/components/ContactSection.astro b/src/components/ContactSection.astro new file mode 100644 index 0000000..3662a87 --- /dev/null +++ b/src/components/ContactSection.astro @@ -0,0 +1,177 @@ +--- +// Import the necessary dependencies from individual component files +import AuthBtn from "./ui/buttons/AuthBtn.astro"; +import ContactIconBlock from "./ui/blocks/ContactIconBlock.astro"; +import TextInput from "./ui/forms/input/TextInput.astro"; +import EmailContactInput from "./ui/forms/input/EmailContactInput.astro"; +import PhoneInput from "./ui/forms/input/PhoneInput.astro"; +import TextAreaInput from "./ui/forms/input/TextAreaInput.astro"; + +// Variables for customization of the HeroSection2 Component +// Main heading +const title: string = "Contact us"; + +// Sub-heading text +const subTitle: string = + "Have questions or want to discuss a project? Reach out, and let's craft the perfect solution with our tools and services."; + +// Form heading text +const formTitle: string = "Fill in the form below"; + +// Form sub-heading text +const formSubTitle: string = "We'll get back to you in 1-2 business days."; +--- + + +
+ {subTitle} +
+{content}
+ { + address ? ( +{addressContent}
+ ) : null + } + { + link ? ( + + {linkTitle} + {arrow ? ( + + ) : null} + + ) : null + } +