Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified frontend/public/favicon.ico
Binary file not shown.
5 changes: 3 additions & 2 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="logo192.png" />
<link rel="apple-touch-icon" href="logo.png" />
<link rel="apple-touch-icon" href="logo.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -24,7 +25,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>SDA 6 starter</title>
<title>Travel Buddy</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file added frontend/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions frontend/src/components/auth/LoginPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ class LoginPage extends Component {
<div className="container">
<div className="row mt-4">
<div className="col-md-6 " style={{color: "white"}}>
<h1>SDA 6</h1>
<p>Starter template</p>
<h1></h1>
<img rel="apple-touch-icon" src="logo.png" width= "150px" height="150px"/>
<p>Find Your Travel Companion...</p>
</div>

<div className="col-md-6">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/home/HomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class HomePage extends Component {
return (
<div className="card">
<div className="card-body">
<h4 className="card-title">SDA 6 starter template</h4>
<h4 className="card-title">Travel Buddy</h4>
<p>This starter template is based on Spring, PostgreSQL, React, React router and Axios. Check the following links for documentation and guides:</p>
<ul>
<li><a href="https://spring.io/projects/spring-boot">Spring</a></li>
Expand Down