diff --git a/src/components/Home.js b/src/components/Home.js index b082488..e2c9cc8 100644 --- a/src/components/Home.js +++ b/src/components/Home.js @@ -1,15 +1,15 @@ import React from 'react'; import './css/Home.css'; -function App() { +const Home = (props) => { return (
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, 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 camerin@camsprojects.online. @@ -20,4 +20,4 @@ function App() { ); } -export default App; +export default Home;