Fixed incorrect domain name
This commit is contained in:
parent
57d0831de7
commit
296d392987
|
|
@ -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
|
||||
<a href="https://github.com/RaspberryProgramming" target="_blank" rel="noreferrer"> Github</a> or look through a list in the
|
||||
<Link to="/github"> Github Page</Link>. You can email me at <a href="mailto:cam@camcodes.com">cam@camcodes.com</a>
|
||||
<Link to="/github"> Github Page</Link>. You can email me at <a href="mailto:cam@camscode.com">cam@camscode.com</a>
|
||||
</Card>
|
||||
|
||||
<div className="social">
|
||||
|
|
|
|||
|
|
@ -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 <a href="mailto:cam@camcodes.com">cam@camcodes.com</a>.
|
||||
React/Redux and hosted over Vercel. You can email me at <a href="mailto:cam@camscode.com">cam@camscode.com</a>.
|
||||
</div>;
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -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 <a href="mailto:cam@camcodes.com">cam@camcodes.com</a>.
|
||||
React/Redux and hosted over Vercel. You can email me at <a href="mailto:cam@camscode.com">cam@camscode.com</a>.
|
||||
</div>
|
||||
</Topic>,
|
||||
<Topic title="Studied at Marist College" background="img/marist.webp">
|
||||
|
|
|
|||
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue