Skip to content

Commit 9e7da09

Browse files
committed
tools
1 parent 7d0e88b commit 9e7da09

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/ContactModal.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import './ContactModal.css';
3-
import { X, Envelope, LinkedinLogo } from '@phosphor-icons/react';
3+
import {X, Envelope, LinkedinLogo, TwitterLogo} from '@phosphor-icons/react';
44

55
const colorizeText = (text) => {
66
return text.split(' ').map((word, index) => {
@@ -37,6 +37,10 @@ const ContactModal = ({ isOpen, onClose }) => {
3737
<LinkedinLogo size={24} />
3838
<span>{colorizeText('LinkedIn')}</span>
3939
</a>
40+
<a href="https://x.com/fezcoddy" target="_blank" rel="noopener noreferrer" className="contact-link">
41+
<TwitterLogo size={24} />
42+
<span>{colorizeText('Twitter (x.com)')}</span>
43+
</a>
4044
</div>
4145
</div>
4246
</div>

0 commit comments

Comments
 (0)