From 939c1b29957ad623b30a32a8725e127d43a6e232 Mon Sep 17 00:00:00 2001 From: Camerin Date: Sun, 31 Oct 2021 18:03:04 -0400 Subject: [PATCH] Fixed incorrect domain name --- src/components/About.js | 2 +- src/components/Home.js | 2 +- src/components/Intro.js | 2 +- src/components/subcomponents/ContactModal.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/About.js b/src/components/About.js index 489224c..cdcde04 100644 --- a/src/components/About.js +++ b/src/components/About.js @@ -31,7 +31,7 @@ class About extends React.Component { I am a computer science student at Marist College in Poughkeepsie, NY. I'm closing in on my Bachelors Degree in Computer Science. I went to Orange County Community College for my Associates Degree in Computer Science. You can find a few of my projects on my Github or look through a list in the - Github Page. You can email me at cam@camcodes.com + Github Page. You can email me at cam@camscode.com
diff --git a/src/components/Home.js b/src/components/Home.js index 55aee09..7acb7fc 100644 --- a/src/components/Home.js +++ b/src/components/Home.js @@ -10,7 +10,7 @@ const Home = (props) => { This website helps you access the projects that I've worked on. You can navigate at the top to different locations in the site. Within you can find information about me, my github repositories, and some youtube videos I've posted. This website is coded with - React/Redux and hosted over Vercel. You can email me at cam@camcodes.com. + React/Redux and hosted over Vercel. You can email me at cam@camscode.com.
; return ( diff --git a/src/components/Intro.js b/src/components/Intro.js index 8a37abb..0ee38fc 100644 --- a/src/components/Intro.js +++ b/src/components/Intro.js @@ -138,7 +138,7 @@ class Intro extends React.Component { This website helps you access the projects that I've worked on. You can navigate at the top to different locations in the site. Within you can find information about me, my github repositories, and some youtube videos I've posted. This website is coded with - React/Redux and hosted over Vercel. You can email me at cam@camcodes.com. + React/Redux and hosted over Vercel. You can email me at cam@camscode.com. , diff --git a/src/components/subcomponents/ContactModal.js b/src/components/subcomponents/ContactModal.js index f3daf3a..c69b91d 100644 --- a/src/components/subcomponents/ContactModal.js +++ b/src/components/subcomponents/ContactModal.js @@ -17,7 +17,7 @@ const ContactModal = props => { const onSubmit = (e) => { e.preventDefault(); // Prevent default submit function - window.open(`mailto:cam@camcodes.com?body=${props.body}`); // Open the message in user's email client + window.open(`mailto:cam@camscode.com?body=${props.body}`); // Open the message in user's email client props.toggleContactModal(); // Close the contact modal };