Skip to content

Commit

Permalink
Add logos and favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
KristaRutz committed May 17, 2020
1 parent b2375d6 commit 74d00a4
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 23 deletions.
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/apple-touch-icon.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 +24,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>Exquisite Corpse</title>
<title>StoryJam</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file added public/logo-via-logohub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"type": "image/x-icon"
},
{
"src": "logo192.png",
"src": "apple-touch-icon.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"src": "android-chrome-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
Expand Down
1 change: 1 addition & 0 deletions site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
4 changes: 2 additions & 2 deletions src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ function App() {
{/* <SignInForm /> */}
<ProjectControl />
</Route>
<Route path="/account">
{/* <Route path="/account">
<AccountControl />
</Route>
</Route> */}
<Route path="/">
<Container fluid>
<AboutPage />
Expand Down
34 changes: 17 additions & 17 deletions src/components/LogInForm.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import React from "react";
var firebase = require("firebase");
var firebaseui = require("firebaseui");
// import React from "react";
// var firebase = require("firebase");
// var firebaseui = require("firebaseui");

var ui = new firebaseui.auth.AuthUI(firebase.auth());
// var ui = new firebaseui.auth.AuthUI(firebase.auth());

ui.start("#firebaseui-auth-container", {
signInOptions: [
{
provider: firebase.auth.EmailAuthProvider.PROVIDER_ID,
requireDisplayName: false,
},
firebase.auth.GoogleAuthProvider.PROVIDER_ID,
],
});
// ui.start("#firebaseui-auth-container", {
// signInOptions: [
// {
// provider: firebase.auth.EmailAuthProvider.PROVIDER_ID,
// requireDisplayName: false,
// },
// firebase.auth.GoogleAuthProvider.PROVIDER_ID,
// ],
// });

function SignInForm() {
return <div id="firebaseui-auth-container"></div>;
}
// function SignInForm() {
// return <div id="firebaseui-auth-container"></div>;
// }

export default SignInForm;
// export default SignInForm;

0 comments on commit 74d00a4

Please sign in to comment.