-
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.
- Loading branch information
1 parent
2867c4e
commit 9aa2907
Showing
1 changed file
with
15 additions
and
0 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 |
---|---|---|
|
@@ -23,6 +23,17 @@ const PhoneIconSVG = () => { | |
) | ||
} | ||
|
||
const InstagramIconSVG = () => { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-instagram" width="24" height="24" viewBox="0 0 24 24" strokeWidth="2" stroke="currentColor" fill="none" strokeLinecap="round" strokeLinejoin="round"> | ||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/> | ||
<rect x="4" y="4" width="16" height="16" rx="4" /> | ||
<circle cx="12" cy="12" r="3" /> | ||
<line x1="16.5" y1="7.5" x2="16.5" y2="7.501" /> | ||
</svg> | ||
) | ||
} | ||
|
||
const EmailIconSVG = () => { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-mail" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> | ||
|
@@ -48,6 +59,10 @@ const contactInformation = [ | |
icon : <PhoneIconSVG/>, | ||
text : "(347) 858 5959" | ||
}, | ||
{ | ||
icon : <InstagramIconSVG/>, | ||
text : "@sentinels_5599" | ||
}, | ||
{ | ||
icon : <EmailIconSVG/>, | ||
text : "[email protected]" | ||
|