Skip to content

Commit

Permalink
Add Instagram as a Contact option
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperBlue committed Dec 11, 2023
1 parent 2867c4e commit 9aa2907
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/Contact/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -48,6 +59,10 @@ const contactInformation = [
icon : <PhoneIconSVG/>,
text : "(347) 858 5959"
},
{
icon : <InstagramIconSVG/>,
text : "@sentinels_5599"
},
{
icon : <EmailIconSVG/>,
text : "[email protected]"
Expand Down

0 comments on commit 9aa2907

Please sign in to comment.