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#134 from omjadhav18/feature/social-icons
Anjaliavv51#132 Responsiveness of social icons and redesign the contact us
- Loading branch information
Showing
4 changed files
with
47 additions
and
58 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
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
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 |
---|---|---|
@@ -1,40 +1,31 @@ | ||
import React from 'react' | ||
import Github from "../../assets/Social-Icons/Github.png"; | ||
import Insta from "../../assets/Social-Icons/instagram.png"; | ||
import Twitter from "../../assets/Social-Icons/Twitter.png"; | ||
|
||
export const ContactText = () => { | ||
return ( | ||
<section className='flex flex-col gap-[20px] justify-center lg:w-[45%] w-full'> | ||
<div className=""> | ||
Hey Rentalog Users, <br /> | ||
We are always looking forward to hearing from you. | ||
Please feel free to reach out to us for any queries, suggestions, or | ||
feedback. <br /> | ||
We would love to hear from you. <br /> | ||
<br /> | ||
Contact us: <br /> | ||
Email: <a href="mailto:[email protected]" className='font-bold text-primaryGreen underline'> [email protected] </a> <br /> | ||
Phone: <a href="tel:+916201577047" className='font-bold text-primaryGreen underline'> +91 62015 77047 </a> <br /> | ||
Address: Shaktinagar, Sonebhadra, UP, 231222 <br /> | ||
<br /> | ||
We welcome your input to improve your Rentalog experience. <br /> | ||
Thank you for choosing Rentalog! <br /> | ||
Best regards, <br /> | ||
The Rentalog Team | ||
</div> | ||
<div | ||
className="flex gap-x-12 lg:justify-center justify-start" | ||
> | ||
<a href="https://twitter.com/gauravsingh1281"> | ||
<img src={Twitter} alt="Twitter-logo" className="h-8" /> | ||
</a> | ||
<a href="https://github.com/gauravsingh1281"> | ||
<img src={Github} alt="Github-logo" className="h-8" /> | ||
</a> | ||
<a href="https://www.instagram.com/gauravsingh1281"> | ||
<img src={Insta} alt="Insta-logo" className="h-8" /> | ||
</a> | ||
<section className="bg-gray-100 rounded-lg shadow-lg flex flex-col gap-6 justify-center lg:w-[45%] w-full"> | ||
<div className="text-gray-800"> | ||
<h2 className="text-xl font-bold mb-4"> | ||
Hey Rentalog Users, | ||
</h2> | ||
<p className="leading-relaxed"> | ||
We are always looking forward to hearing from you. | ||
Please feel free to reach out to us for any queries, suggestions, or | ||
feedback. <br /> | ||
We would love to hear from you. | ||
</p> | ||
|
||
<div className="mt-4"> | ||
<p className="font-semibold">Contact us:</p> | ||
<p>Email: <a href="mailto:[email protected]" className="font-bold text-primaryGreen underline"> [email protected] </a></p> | ||
<p>Phone: <a href="tel:+916201577047" className="font-bold text-primaryGreen underline"> +91 62015 77047 </a></p> | ||
<p>Address: Shaktinagar, Sonebhadra, UP, 231222</p> | ||
</div> | ||
|
||
<p className="mt-4 leading-relaxed"> | ||
We welcome your input to improve your Rentalog experience. <br /> | ||
Thank you for choosing Rentalog! | ||
</p> | ||
<p className="mt-2">Best regards,<br />The Rentalog Team</p> | ||
</div> | ||
</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