-
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.
redirect to email and dialer pad added
- Loading branch information
1 parent
7038f2e
commit 13b4079
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -42,11 +42,11 @@ const ContactUs = () => { | |
<div className="grid grid-cols-2"> | ||
<div className="flex flex-col"> | ||
<div><span className="me-2 "><FontAwesomeIcon icon={faEnvelope}/></span>Email</div> | ||
<div>[email protected]</div> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</div> | ||
<div className="flex flex-col"> | ||
<div><span className="me-2 "><FontAwesomeIcon icon={faMobilePhone}/></span>Phone</div> | ||
<div>+1 (555) 123-4567</div> | ||
<a href="tel:+15551234567">+1 (555) 123-4567</a> | ||
</div> | ||
</div> | ||
|
||
|