1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-07-02 07:20:38 +02:00

Improve PWA images

This commit is contained in:
Elias Schneider 2022-04-28 16:28:37 +02:00
parent 09645c6202
commit c8ef3b67f6
No known key found for this signature in database
GPG Key ID: D5EC1C72D93244FD
8 changed files with 25 additions and 17 deletions

View File

@ -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).

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1018 B

After

Width:  |  Height:  |  Size: 1018 B

View File

@ -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

View File

@ -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}

View File

@ -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 />

View File

@ -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}