Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions autogpt_platform/frontend/public/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "AutoGPT Platform",
"short_name": "AutoGPT",
"description": "Your one stop shop to creating AI Agents",
"start_url": "/",
"display": "standalone",
"background_color": "#04062e",
"theme_color": "#04062e",
"icons": [
{
"src": "/notification-icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/notification-icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
]
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified autogpt_platform/frontend/public/notification-icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified autogpt_platform/frontend/public/notification-icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion autogpt_platform/frontend/public/push-sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ self.addEventListener("push", function (event) {
var options = {
body: config.body,
icon: "/notification-icon-192.png",
badge: "/notification-icon-192.png",
badge: "/notification-badge-96.png",
tag: tag,
data: Object.assign({ url: targetUrl }, data),
renotify: true,
Expand Down
2 changes: 2 additions & 0 deletions autogpt_platform/frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ const faviconPath = isDev
export const metadata: Metadata = {
title: "AutoGPT Platform",
description: "Your one stop shop to creating AI Agents",
manifest: "/manifest.webmanifest",
icons: {
icon: faviconPath,
apple: "/apple-touch-icon.png",
},
};

Expand Down
Loading