Skip to content

Commit 61f1dd5

Browse files
author
Shawn Toubeau
authored
Merge pull request #80 from path2finding/feature/info-button
Feature/info button
2 parents f323c1e + 42f4f75 commit 61f1dd5

16 files changed

+509
-40
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717
"@types/redux-mock-store": "^1.0.2",
1818
"@types/yup": "^0.26.33",
1919
"connected-react-router": "^6.6.1",
20+
"fs": "^0.0.1-security",
2021
"history": "^4.10.1",
2122
"lodash": "^4.17.15",
2223
"moment": "^2.24.0",
2324
"node-sass": "^4.13.1",
2425
"react": "^16.12.0",
2526
"react-dom": "^16.12.0",
27+
"react-markdown": "^4.3.1",
2628
"react-moment": "^0.9.7",
2729
"react-redux": "^7.1.3",
2830
"react-router": "^5.1.2",

public/android-chrome-192x192.png

13.5 KB
Loading

public/android-chrome-512x512.png

25.1 KB
Loading

public/apple-touch-icon.png

13.1 KB
Loading

public/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#da532c</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

public/favicon-16x16.png

1.09 KB
Loading

public/favicon-32x32.png

1.65 KB
Loading

public/favicon.ico

11.7 KB
Binary file not shown.

public/index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<!-- <link rel="icon" href="%PUBLIC_URL%/path2phamming.png" /> -->
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta
@@ -16,6 +16,13 @@
1616
-->
1717
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
1818

19+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
20+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
21+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
22+
<link rel="manifest" href="/site.webmanifest" />
23+
<meta name="msapplication-TileColor" content="#da532c" />
24+
<meta name="theme-color" content="#ffffff" />
25+
1926
<!-- External Dependencies -->
2027
<link
2128
rel="stylesheet"
@@ -32,7 +39,7 @@
3239
work correctly both with client-side routing and a non-root public URL.
3340
Learn how to configure a non-root public URL by running `npm run build`.
3441
-->
35-
<title>React App</title>
42+
<title>Path2Finding</title>
3643
</head>
3744
<body>
3845
<noscript>You need to enable JavaScript to run this app.</noscript>

public/manifest.json

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"name": "Path2Finding",
3+
"short_name": "Path2Finding",
44
"icons": [
55
{
6-
"src": "favicon.ico",
7-
"sizes": "64x64 32x32 24x24 16x16",
8-
"type": "image/x-icon"
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
99
},
1010
{
11-
"src": "logo192.png",
12-
"type": "image/png",
13-
"sizes": "192x192"
14-
},
15-
{
16-
"src": "logo512.png",
17-
"type": "image/png",
18-
"sizes": "512x512"
11+
"src": "/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
1914
}
2015
],
21-
"start_url": ".",
22-
"display": "standalone",
23-
"theme_color": "#000000",
24-
"background_color": "#ffffff"
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
2519
}

0 commit comments

Comments
 (0)