Skip to content

Commit e0bafc7

Browse files
committed
static images
1 parent 6fe3a43 commit e0bafc7

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

src/assets/img/hs.png

1.83 MB
Loading

src/assets/img/hs.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/Contacts/Contacts.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ function Contacts() {
286286
<FiAtSign />
287287
</div>
288288
<p style={{ color: theme.tertiary }}>
289-
{contactsData.email}
289+
<a href={`tomail:${contactsData.email}`}>{contactsData.email}</a>
290290
</p>
291291
</a>
292292
<a
@@ -297,15 +297,15 @@ function Contacts() {
297297
<FiPhone />
298298
</div>
299299
<p style={{ color: theme.tertiary }}>
300-
{contactsData.phone}
300+
<a href={`tel:${contactsData.phone}`}>{contactsData.phone}</a>
301301
</p>
302302
</a>
303303
<div className='personal-details'>
304304
<div className={classes.detailsIcon}>
305305
<HiOutlineLocationMarker />
306306
</div>
307307
<p style={{ color: theme.tertiary }}>
308-
{contactsData.address}
308+
<a href={`https://www.google.com/maps/place/${contactsData.address}`}>Carrboro, NC</a>
309309
</p>
310310
</div>
311311

src/data/contactsData.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const contactsData = {
22
email: 'jon@jonchristie.io',
3-
phone: '+19193683369',
4-
address: 'Wilmington, NC',
3+
phone: '(919) 368-3369',
4+
address: 'Carrboro,+NC/',
55

66
sheetAPI: ''
77
}

src/data/headerData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export const headerData = {
88
href1:"<a href=",
99
url:"https://www.instructure.com/",
1010
href2:"\" alt='jon christie headshot portfolio fullstack11235'\"><a>",
11-
image: 'https://raw.githubusercontent.com/mathcodes/JonChristie2022/feat-backup/src/assets/img/hs_large.svg',
11+
image: '../../assets/img/hs.svg',
1212
resumePdf: resume
1313
}

0 commit comments

Comments
 (0)