Added web app icons.

This commit is contained in:
Jayden Seric 2017-08-22 12:50:15 +10:00
parent 530e12cbc9
commit e7a5665757
4 changed files with 20 additions and 0 deletions

View File

@ -6,6 +6,11 @@ const Page = ({ title, children }) =>
<title>
{title}
</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#22a699" />
<link rel="manifest" href="/static/manifest.json" />
<link rel="icon" sizes="192x192" href="/static/apollo-icon.png" />
<link rel="apple-touch-icon" href="/static/apollo-launcher-icon.png" />
<style>{`
html {
font-family: sans-serif;

BIN
app/static/apollo-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

15
app/static/manifest.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "Apollo upload examples",
"short_name": "Uploads",
"start_url": "/",
"display": "standalone",
"theme_color": "#22a699",
"background_color": "#22a699",
"icons": [
{
"src": "apollo-launcher-icon.png",
"type": "image/png",
"sizes": "512x512"
}
]
}