mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-04 23:10:13 +01:00
Improve PWA images
This commit is contained in:
parent
09645c6202
commit
c8ef3b67f6
@ -1,4 +1,4 @@
|
||||
# <div align="center"><img src="./public/logo.svg" width="40"/> </br>Pingvin Share</div>
|
||||
# <div align="center"><img src="./public/img/logo.svg" width="40"/> </br>Pingvin Share</div>
|
||||
|
||||
Pingvin Share is a selfhosted file sharing plattform made for the [Appwrite Hackathon](https://dev.to/devteam/announcing-the-appwrite-hackathon-on-dev-1oc0).
|
||||
|
||||
|
BIN
public/icons/icon-white-128x128.png
Normal file
BIN
public/icons/icon-white-128x128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
BIN
public/img/logo-bg-white.png
Normal file
BIN
public/img/logo-bg-white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 1018 B After Width: | Height: | Size: 1018 B |
@ -10,48 +10,56 @@
|
||||
{
|
||||
"src": "icons/icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-128x128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-384x384.png",
|
||||
"sizes": "384x384",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "icons/icon-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
}
|
||||
],
|
||||
"splash_pages": null
|
||||
|
@ -87,7 +87,7 @@ const Header = () => {
|
||||
<NextLink href="/">
|
||||
<Group>
|
||||
<Image
|
||||
src="/logo.svg"
|
||||
src="/img/logo.svg"
|
||||
alt="Pinvgin Share Logo"
|
||||
height={40}
|
||||
width={40}
|
||||
|
@ -12,7 +12,7 @@ export default class _Document extends Document {
|
||||
<Head>
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<meta name="theme-color" content="#46509e" />
|
||||
<link rel="apple-touch-icon" href="/icons/icon-128x128.png" />
|
||||
<link rel="apple-touch-icon" href="/icons/icon-white-128x128.png" />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
|
@ -137,7 +137,7 @@ export default function Home() {
|
||||
</div>
|
||||
<Group className={classes.image} align="center">
|
||||
<Image
|
||||
src="/logo.svg"
|
||||
src="/img/logo.svg"
|
||||
alt="Pingvin Share Logo"
|
||||
width={200}
|
||||
height={200}
|
||||
|
Loading…
Reference in New Issue
Block a user