Added proper icon

This commit is contained in:
Jaret Burkett
2025-02-22 09:05:55 -07:00
parent 4ef5a668c0
commit 77a5e01301
8 changed files with 27 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
ui/src/app/apple-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 15 KiB

BIN
ui/src/app/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

3
ui/src/app/icon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 110 KiB

View File

@@ -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
View 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"
}