feat: add apple icon to metadata for enhanced application branding
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m32s

This commit is contained in:
Julien Froidefond
2026-02-17 08:14:05 +01:00
parent 31d9c00b6d
commit e8282bb118
3 changed files with 26 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

@@ -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
View 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',
},
],
};
}