- Introduced a new logo for the application. - Updated favicon and app icons in the manifest for better branding.master
@ -1,11 +1,79 @@
@@ -1,11 +1,79 @@
|
||||
<!DOCTYPE html> |
||||
<!doctype html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8" /> |
||||
<meta name="viewport" content="width=device-width" /> |
||||
%sveltekit.head% |
||||
</head> |
||||
<body data-sveltekit-preload-data="hover"> |
||||
<div style="display: contents">%sveltekit.body%</div> |
||||
</body> |
||||
<head> |
||||
<meta charset="utf-8" /> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
||||
|
||||
<!-- Favicon --> |
||||
<link |
||||
rel="icon" |
||||
href="/icons/icon-32x32.png?v=1" |
||||
sizes="32x32" |
||||
type="image/png" |
||||
/> |
||||
<link |
||||
rel="icon" |
||||
href="/icons/icon-16x16.png?v=1" |
||||
sizes="16x16" |
||||
type="image/png" |
||||
/> |
||||
|
||||
<!-- Apple Touch Icons --> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-180x180.png?v=1" |
||||
sizes="180x180" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-192x192.png?v=1" |
||||
sizes="192x192" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-120x120.png?v=1" |
||||
sizes="120x120" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-76x76.png?v=1" |
||||
sizes="76x76" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-152x152.png?v=1" |
||||
sizes="152x152" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-512x512.png?v=1" |
||||
sizes="512x512" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-60x60.png?v=1" |
||||
sizes="60x60" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-57x57.png?v=1" |
||||
sizes="57x57" |
||||
/> |
||||
|
||||
<!-- Fallback without sizes --> |
||||
<link rel="apple-touch-icon" href="/icons/icon-180x180.png?v=1" /> |
||||
|
||||
<!-- Web App Manifest --> |
||||
<link rel="manifest" href="/manifest.json?v=1" /> |
||||
|
||||
<!-- Open Graph and Twitter Card --> |
||||
<meta property="og:image" content="/icons/icon-512x512.png?v=1" /> |
||||
<meta name="twitter:image" content="/icons/icon-512x512.png?v=1" /> |
||||
|
||||
<!-- SvelteKit Head --> |
||||
%sveltekit.head% |
||||
</head> |
||||
<body data-sveltekit-preload-data="hover"> |
||||
<div style="display: contents">%sveltekit.body%</div> |
||||
</body> |
||||
</html> |
||||
|
||||
@ -1,11 +1,79 @@
@@ -1,11 +1,79 @@
|
||||
<!DOCTYPE html> |
||||
<!doctype html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8" /> |
||||
<meta name="viewport" content="width=device-width" /> |
||||
%sveltekit.head% |
||||
</head> |
||||
<body data-sveltekit-preload-data="hover"> |
||||
<div style="display: contents">%sveltekit.body%</div> |
||||
</body> |
||||
<head> |
||||
<meta charset="utf-8" /> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
||||
|
||||
<!-- Favicon --> |
||||
<link |
||||
rel="icon" |
||||
href="/icons/icon-32x32.png?v=1" |
||||
sizes="32x32" |
||||
type="image/png" |
||||
/> |
||||
<link |
||||
rel="icon" |
||||
href="/icons/icon-16x16.png?v=1" |
||||
sizes="16x16" |
||||
type="image/png" |
||||
/> |
||||
|
||||
<!-- Apple Touch Icons --> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-180x180.png?v=1" |
||||
sizes="180x180" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-192x192.png?v=1" |
||||
sizes="192x192" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-120x120.png?v=1" |
||||
sizes="120x120" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-76x76.png?v=1" |
||||
sizes="76x76" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-152x152.png?v=1" |
||||
sizes="152x152" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-512x512.png?v=1" |
||||
sizes="512x512" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-60x60.png?v=1" |
||||
sizes="60x60" |
||||
/> |
||||
<link |
||||
rel="apple-touch-icon" |
||||
href="/icons/icon-57x57.png?v=1" |
||||
sizes="57x57" |
||||
/> |
||||
|
||||
<!-- Fallback without sizes --> |
||||
<link rel="apple-touch-icon" href="/icons/icon-180x180.png?v=1" /> |
||||
|
||||
<!-- Web App Manifest --> |
||||
<link rel="manifest" href="/manifest.json?v=1" /> |
||||
|
||||
<!-- Open Graph and Twitter Card --> |
||||
<meta property="og:image" content="/icons/icon-512x512.png?v=1" /> |
||||
<meta name="twitter:image" content="/icons/icon-512x512.png?v=1" /> |
||||
|
||||
<!-- SvelteKit Head --> |
||||
%sveltekit.head% |
||||
</head> |
||||
<body data-sveltekit-preload-data="hover"> |
||||
<div style="display: contents">%sveltekit.body%</div> |
||||
</body> |
||||
</html> |
||||
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 565 B |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 6.4 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,63 @@
@@ -0,0 +1,63 @@
|
||||
{ |
||||
"name": "GitWorkshop.dev", |
||||
"short_name": "GitWorkshop", |
||||
"icons": [ |
||||
{ |
||||
"src": "icons/icon-512x512.png?v=1", |
||||
"sizes": "512x512", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-192x192.png?v=1", |
||||
"sizes": "192x192", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-180x180.png?v=1", |
||||
"sizes": "180x180", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-152x152.png?v=1", |
||||
"sizes": "152x152", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-120x120.png?v=1", |
||||
"sizes": "120x120", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-76x76.png?v=1", |
||||
"sizes": "76x76", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-60x60.png?v=1", |
||||
"sizes": "60x60", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-57x57.png?v=1", |
||||
"sizes": "57x57", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-48x48.png?v=1", |
||||
"sizes": "48x48", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-32x32.png?v=1", |
||||
"sizes": "32x32", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "icons/icon-16x16.png?v=1", |
||||
"sizes": "16x16", |
||||
"type": "image/png" |
||||
} |
||||
], |
||||
"start_url": "/", |
||||
"display": "standalone" |
||||
} |
||||