Component Name Fixes and stylistic fixes

This commit is contained in:
Camerin 2021-09-15 15:50:36 -04:00
parent 6c70c76b45
commit b2250ebe3b
1 changed files with 5 additions and 5 deletions

View File

@ -1,15 +1,15 @@
import React from 'react';
import './css/Home.css';
function App() {
const Home = (props) => {
return (
<div className="Home">
<div className="theater">
<div className="theater-bg">
</div>
<div className="theater-bg" />
<div className="theater-content">
<h1>Welcome to my Portfolio</h1>
<p>This website helps you access the projects that I've worked on. You can navigate
<p>
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:camerin@camsprojects.online">camerin@camsprojects.online</a>.
@ -20,4 +20,4 @@ function App() {
);
}
export default App;
export default Home;