/**
 * Web App Manifest
 * 定义PWA应用元数据
 */
{
  "name": "ThinkHub Studio",
  "short_name": "ThinkHub",
  "description": "ThinkHub Studio是一个人工智能驱动的产品工作室，专注于用最简洁的方式创造改变效率的工具。",
  "start_url": "/",
  "display": "standalone",
  "background_color": "#f8f6f0",
  "theme_color": "#ff6b35",
  "orientation": "portrait-primary",
  "categories": ["productivity", "utilities", "business"],
  "lang": "zh-CN",
  "dir": "ltr",
  "icons": [
    {
      "src": "/icons/icon-72x72.png",
      "sizes": "72x72",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-96x96.png",
      "sizes": "96x96",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-128x128.png",
      "sizes": "128x128",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-144x144.png",
      "sizes": "144x144",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-152x152.png",
      "sizes": "152x152",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-192x192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-384x384.png",
      "sizes": "384x384",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-512x512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any maskable"
    }
  ],
  "screenshots": [
    {
      "src": "/screenshots/desktop-1.png",
      "sizes": "1280x720",
      "type": "image/png",
      "form_factor": "wide"
    },
    {
      "src": "/screenshots/mobile-1.png",
      "sizes": "390x844",
      "type": "image/png",
      "form_factor": "narrow"
    }
  ],
  "shortcuts": [
    {
      "name": "查看产品",
      "short_name": "产品",
      "description": "浏览ThinkHub Studio的所有产品",
      "url": "/#products",
      "icons": [
        {
          "src": "/icons/shortcut-products.png",
          "sizes": "96x96"
        }
      ]
    },
    {
      "name": "阅读博客",
      "short_name": "博客",
      "description": "阅读最新的技术博客和文章",
      "url": "/blog",
      "icons": [
        {
          "src": "/icons/shortcut-blog.png",
          "sizes": "96x96"
        }
      ]
    },
    {
      "name": "关于工作室",
      "short_name": "关于",
      "description": "了解ThinkHub Studio的故事和团队",
      "url": "/about",
      "icons": [
        {
          "src": "/icons/shortcut-about.png",
          "sizes": "96x96"
        }
      ]
    }
  ],
  "protocol_handlers": [
    {
      "scheme": "web+thinkhub",
      "url": "/app/%s"
    }
  ],
  "related_applications": [
    {
      "platform": "webapp",
      "url": "https://thinkhub.org.cn/manifest.json"
    }
  ],
  "prefer_related_applications": false,
  "edge_side_panel": {
    "preferred_width": 400
  },
  "handle_links": "preferred",
  "launch_handler": {
    "route_to": "auto",
    "client_mode": "auto"
  },
  "file_handlers": [
    {
      "action": "/open-file",
      "accept": {
        "application/json": [".json"],
        "text/markdown": [".md", ".markdown"]
      },
      "launch_type": "single-client"
    }
  ],
  "share_target": {
    "action": "/share",
    "method": "POST",
    "enctype": "multipart/form-data",
    "params": {
      "title": "title",
      "text": "text",
      "url": "url",
      "files": [
        {
          "name": "file",
          "accept": ["*/*"]
        }
      ]
    }
  },
  "id": "thinkhub-studio",
  "scope": "/",
  "generator": "Astro v4.x"
}