mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
- Add GitHub Action to auto-format PRs with Biome - Fix formatting in app/manifest.ts and scripts/test-diagram-operations.mjs
29 lines
899 B
TypeScript
29 lines
899 B
TypeScript
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",
|
|
},
|
|
],
|
|
}
|
|
}
|