diff --git a/app/manifest.ts b/app/manifest.ts new file mode 100644 index 0000000..cb93576 --- /dev/null +++ b/app/manifest.ts @@ -0,0 +1,27 @@ +import type { MetadataRoute } from "next"; + +export default function manifest(): MetadataRoute.Manifest { + return { + name: 'Next AI Draw.io', + short_name: 'AIDraw.io', + description: 'Create AWS architecture diagrams, flowcharts, and technical diagrams using AI. Free online tool integrating draw.io with AI assistance for professional diagram creation.', + start_url: '/', + display: 'standalone', + background_color: '#f9fafb', + theme_color: '#171d26', + icons: [ + { + src: '/favicon-192x192.png', + sizes: '192x192', + type: 'image/png', + purpose: 'any', + }, + { + src: '/favicon-512x512.png', + sizes: '512x512', + type: 'image/png', + purpose: 'any', + }, + ], + } +} diff --git a/public/favicon-192x192.png b/public/favicon-192x192.png new file mode 100644 index 0000000..98eb304 Binary files /dev/null and b/public/favicon-192x192.png differ diff --git a/public/favicon-512x512.png b/public/favicon-512x512.png new file mode 100644 index 0000000..38abad4 Binary files /dev/null and b/public/favicon-512x512.png differ