Added proper icon
BIN
ui/public/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
ui/public/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
ui/src/app/apple-icon.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 15 KiB |
BIN
ui/src/app/icon.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
3
ui/src/app/icon.svg
Normal file
|
After Width: | Height: | Size: 110 KiB |
@@ -16,6 +16,9 @@ export const metadata: Metadata = {
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html lang="en" className="dark">
|
||||
<head>
|
||||
<meta name="apple-mobile-web-app-title" content="AI-Toolkit" />
|
||||
</head>
|
||||
<body className={inter.className}>
|
||||
<ThemeProvider>
|
||||
<div className="flex h-screen bg-gray-950">
|
||||
|
||||
21
ui/src/app/manifest.json
Normal file
@@ -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"
|
||||
}
|
||||