forked from Anjaliavv51/Retro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Anjaliavv51#215 from Sumanbhadra/feat/181-enhance-…
…Contact-with-us Enhance "Connect with us" component with additional info
- Loading branch information
Showing
2 changed files
with
54 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,26 +18,57 @@ const Contact = () => { | |
<ContactText /> | ||
<ContactForm /> | ||
</main> | ||
|
||
<div className="flex items-center justify-center p-0"> | ||
<article className="flex flex-col items-center md:items-start text-center md:text-left"> | ||
<h2 className="text-3xl lg:text-5xl font-bold tracking-wider mb-10 font-monsterrat text-textBlack"> | ||
Connect with <span className="text-customRed">Us</span> | ||
</h2> | ||
<div className="flex gap-[27px] flex-wrap justify-center md:justify-start md:ml-20"> | ||
<a href="https://twitter.com/gauravsingh1281"> | ||
<img src={Twitter} alt="Twitter-logo" className="h-14" /> | ||
</a> | ||
<a href="https://github.com/gauravsingh1281"> | ||
<img src={Github} alt="Github-logo" className="h-14" /> | ||
</a> | ||
<a href="https://www.instagram.com/gauravsingh1281"> | ||
<img src={Insta} alt="Insta-logo" className="h-14" /> | ||
</a> | ||
</div> | ||
</article> | ||
<h2 className="text-5xl text-center font-bold tracking-wider font-monsterrat text-textBlack"> | ||
Connect with <span className="text-customRed">Us</span> | ||
</h2> | ||
<div className="md:flex items-center justify-between"> | ||
<div className="flex items-center justify-center p-0 md:w-1/2"> | ||
<article className="flex flex-col items-center text-center "> | ||
<div className="flex gap-[27px] justify-center "> | ||
<a href="https://twitter.com/gauravsingh1281"> | ||
<img | ||
src={Twitter} | ||
alt="Twitter-logo" | ||
className="md:h-12 h-10" | ||
/> | ||
</a> | ||
<a href="https://github.com/gauravsingh1281"> | ||
<img src={Github} alt="Github-logo" className="md:h-12 h-10" /> | ||
</a> | ||
<a href="https://www.instagram.com/gauravsingh1281"> | ||
<img src={Insta} alt="Insta-logo" className="md:h-12 h-10" /> | ||
</a> | ||
</div> | ||
<div className="mt-4"> | ||
<p className="font-semibold">Get in touch :</p> | ||
<p> | ||
Email: | ||
<a | ||
href="mailto:[email protected]" | ||
className="ml-1 font-bold text-primaryGreen underline" | ||
> | ||
[email protected] | ||
</a> | ||
</p> | ||
<p> | ||
Phone: | ||
<a | ||
href="tel:+916201577047" | ||
className="ml-1 font-bold text-primaryGreen underline" | ||
> | ||
+91 62015 77047 | ||
</a> | ||
</p> | ||
<p> | ||
Address: Shaktinagar, Sonebhadra <br /> UP, 231222 | ||
</p> | ||
</div> | ||
</article> | ||
</div> | ||
<div className=" md:w-1/2"> | ||
<GoogleMap /> | ||
</div> | ||
</div> | ||
<GoogleMap /> | ||
</section> | ||
); | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters