Skip to content

Commit

Permalink
Initial static HTML and CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
gstark committed Sep 22, 2021
1 parent 519ab83 commit 8b570cd
Show file tree
Hide file tree
Showing 17 changed files with 740 additions and 23 deletions.
6 changes: 6 additions & 0 deletions ClientApp/index.html
Expand Up @@ -3,6 +3,12 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<link
crossorigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React App</title>
</head>
Expand Down
28 changes: 27 additions & 1 deletion ClientApp/src/App.tsx
@@ -1,5 +1,31 @@
import React from 'react'
import { Restaurants } from './pages/Restaurants'
import avatar from './images/avatar.png'

export function App() {
return <div>Hello, World </div>
return (
<>
<header>
<ul>
<li>
<nav>
<a href="#">
<i className="fa fa-plus"></i> Restaurant
</a>
<p>Welcome back, Steve!</p>
</nav>
</li>
<li className="avatar">
<img src={avatar} alt="Steve's Avatar" height="64" width="64" />
</li>
</ul>
</header>
<Restaurants />
<footer>
<p>
Built with <i className="fa fa-heart"></i> in St Petersburg, Florida.
</p>
</footer>
</>
)
}
Binary file added ClientApp/src/images/avatar.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ClientApp/src/images/box.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ClientApp/src/images/map-border.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ClientApp/src/images/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ClientApp/src/images/saguaro.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ClientApp/src/images/square.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ClientApp/src/images/taco-tuesday.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ClientApp/src/images/truck.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8b570cd

Please sign in to comment.