feat: add apple icon to metadata for enhanced application branding
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m32s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m32s
This commit is contained in:
BIN
public/rocket_blue_gradient_large_logo.jpg
Normal file
BIN
public/rocket_blue_gradient_large_logo.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 75 KiB |
@@ -18,6 +18,7 @@ export const metadata: Metadata = {
|
||||
description: "Application de gestion d'ateliers SWOT pour entretiens managériaux",
|
||||
icons: {
|
||||
icon: '/icon.svg',
|
||||
apple: '/rocket_blue_gradient_large_logo.jpg',
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
25
src/app/manifest.ts
Normal file
25
src/app/manifest.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { MetadataRoute } from 'next';
|
||||
|
||||
export default function manifest(): MetadataRoute.Manifest {
|
||||
return {
|
||||
name: 'Workshop Manager',
|
||||
short_name: 'Workshop',
|
||||
description: "Application de gestion d'ateliers SWOT pour entretiens managériaux",
|
||||
start_url: '/',
|
||||
display: 'standalone',
|
||||
icons: [
|
||||
{
|
||||
src: '/rocket_blue_gradient_large_logo.jpg',
|
||||
sizes: '192x192',
|
||||
type: 'image/jpeg',
|
||||
purpose: 'any',
|
||||
},
|
||||
{
|
||||
src: '/rocket_blue_gradient_large_logo.jpg',
|
||||
sizes: '512x512',
|
||||
type: 'image/jpeg',
|
||||
purpose: 'any',
|
||||
},
|
||||
],
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user