mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
updating with react
saving because I DELETED THIS AND MORE EARLIER, GOSH DARN
This commit is contained in:
22
site/src/App.js
Normal file
22
site/src/App.js
Normal file
@@ -0,0 +1,22 @@
|
||||
import './App.css';
|
||||
import Nav from './componets/Nav.js'
|
||||
import Link from './componets/Link.js'
|
||||
import Socials from './componets/Socials.js'
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className="App">
|
||||
<div className="header">
|
||||
<h1>Andrew Simonson</h1>
|
||||
<Socials />
|
||||
<Nav>
|
||||
<Link className='navBar' onClick='/home'>Home</Link>
|
||||
<Link className='navBar' onClick='resume.pdf'>Resume</Link>
|
||||
<Link className='navBar' onClick='/projects'>Projects</Link>
|
||||
</Nav>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user