From b2250ebe3bd00bc0caddce5a31d3b6325e3054be Mon Sep 17 00:00:00 2001 From: Camerin Date: Wed, 15 Sep 2021 15:50:36 -0400 Subject: [PATCH] Component Name Fixes and stylistic fixes --- src/components/Home.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 (
-
-
+

Welcome to my Portfolio

-

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;