diff --git a/ui/public/web-app-manifest-192x192.png b/ui/public/web-app-manifest-192x192.png new file mode 100644 index 00000000..0cbc2981 Binary files /dev/null and b/ui/public/web-app-manifest-192x192.png differ diff --git a/ui/public/web-app-manifest-512x512.png b/ui/public/web-app-manifest-512x512.png new file mode 100644 index 00000000..2966663a Binary files /dev/null and b/ui/public/web-app-manifest-512x512.png differ diff --git a/ui/src/app/apple-icon.png b/ui/src/app/apple-icon.png new file mode 100644 index 00000000..595cb880 Binary files /dev/null and b/ui/src/app/apple-icon.png differ diff --git a/ui/src/app/favicon.ico b/ui/src/app/favicon.ico index 718d6fea..a20b629a 100644 Binary files a/ui/src/app/favicon.ico and b/ui/src/app/favicon.ico differ diff --git a/ui/src/app/icon.png b/ui/src/app/icon.png new file mode 100644 index 00000000..8bcfbf80 Binary files /dev/null and b/ui/src/app/icon.png differ diff --git a/ui/src/app/icon.svg b/ui/src/app/icon.svg new file mode 100644 index 00000000..2689ae53 --- /dev/null +++ b/ui/src/app/icon.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/ui/src/app/layout.tsx b/ui/src/app/layout.tsx index 8cd25ce1..6e379e58 100644 --- a/ui/src/app/layout.tsx +++ b/ui/src/app/layout.tsx @@ -16,6 +16,9 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( + + +
diff --git a/ui/src/app/manifest.json b/ui/src/app/manifest.json new file mode 100644 index 00000000..ced3ca5d --- /dev/null +++ b/ui/src/app/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "AI Toolkit", + "short_name": "AIToolkit", + "icons": [ + { + "src": "/web-app-manifest-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/web-app-manifest-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "theme_color": "#000000", + "background_color": "#000000", + "display": "standalone" +} \ No newline at end of file