-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -231,15 +231,15 @@ const Contact = () => { | |
<div className="rounded-md border p-4"> | ||
<div className="flex items-center mb-2"> | ||
<i className="fas fa-envelope mr-2 text-black"></i> | ||
<p className="text-black">[email protected]</p> | ||
<a href="mailto:[email protected]" className="text-black">[email protected]</a> | ||
</div> | ||
<div className="flex items-center mb-2"> | ||
<i className="fas fa-map-marker-alt mr-2 text-black"></i> | ||
<p className="text-black">123 Main Street, City, Country</p> | ||
</div> | ||
<div className="flex items-center mb-1"> | ||
<i className="fas fa-phone-alt mr-2 text-black"></i> | ||
<p className="text-black">+1 234 567 890</p> | ||
<a href="tel:+1234567890" className="text-black">+1 234 567 890</a> | ||
</div> | ||
</div> | ||
<div className="mt-4"> | ||
|
@@ -264,17 +264,17 @@ const Contact = () => { | |
<h3 className="text-lg font-bold mb-2 text-black"> | ||
Follow Us | ||
</h3> | ||
<div className="flex space-x-4 socials "> | ||
<a href="#" className="text-blue-500 hover:text-blue-700 "> | ||
<i className="fab fa-facebook"></i> | ||
<div className="flex space-x-4 socials" style={{fontSize: "30px"}}> | ||
<a href="#" className="text-blue-500 hover:text-blue-1000 transition-transform transform hover:scale-125 duration-300"> | ||
<i className="fab fa-facebook" ></i> | ||
</a> | ||
<a href="#" className="text-blue-500 hover:text-blue-700"> | ||
<a href="#" className="text-blue-500 hover:text-blue-1000 transition-transform transform hover:scale-125 duration-300"> | ||
<i className="fab fa-twitter"></i> | ||
</a> | ||
<a href="#" className="text-blue-500 hover:text-blue-700"> | ||
<a href="#" className="text-blue-500 hover:text-blue-1000 transition-transform transform hover:scale-125 duration-300"> | ||
<i className="fab fa-instagram"></i> | ||
</a> | ||
<a href="#" className="text-blue-500 hover:text-blue-700"> | ||
<a href="#" className="text-blue-500 hover:text-blue-1000 transition-transform transform hover:scale-125 duration-300"> | ||
<i className="fab fa-linkedin"></i> | ||
</a> | ||
</div> | ||
|