Fixed incorrect domain name
This commit is contained in:
parent
930708ffec
commit
939c1b2995
|
|
@ -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 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
|
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
|
<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>
|
</Card>
|
||||||
|
|
||||||
<div className="social">
|
<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
|
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,
|
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
|
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>;
|
</div>;
|
||||||
|
|
||||||
return (
|
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
|
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,
|
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
|
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>
|
</div>
|
||||||
</Topic>,
|
</Topic>,
|
||||||
<Topic title="Studied at Marist College" background="img/marist.webp">
|
<Topic title="Studied at Marist College" background="img/marist.webp">
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ const ContactModal = props => {
|
||||||
const onSubmit = (e) => {
|
const onSubmit = (e) => {
|
||||||
e.preventDefault(); // Prevent default submit function
|
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
|
props.toggleContactModal(); // Close the contact modal
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue