manifest.ts
483 bytes
| 1 | import type { MetadataRoute } from 'next'; |
|---|---|
| 2 | |
| 3 | export default function manifest(): MetadataRoute.Manifest { |
| 4 | return { |
| 5 | name: 'Roundtable', |
| 6 | short_name: 'Roundtable', |
| 7 | description: |
| 8 | 'Ask several AI models one question and get one checked verdict with any disagreement still visible.', |
| 9 | start_url: '/', |
| 10 | display: 'standalone', |
| 11 | background_color: '#f8f9fc', |
| 12 | theme_color: '#4f5ee8', |
| 13 | icons: [{ src: '/icon.svg', sizes: 'any', type: 'image/svg+xml' }], |
| 14 | }; |
| 15 | } |
| 16 | |