mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-07-17 22:18:31 +00:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: 'Perplexica - Chat with the internet',
|
|
short_name: 'Perplexica',
|
|
description:
|
|
'Perplexica is an AI powered chatbot that is connected to the internet.',
|
|
start_url: '/',
|
|
display: 'standalone',
|
|
background_color: '#0a0a0a',
|
|
theme_color: '#0a0a0a',
|
|
screenshots: [
|
|
{
|
|
src: '/screenshots/p1.png',
|
|
form_factor: 'wide',
|
|
sizes: '2560x1600',
|
|
},
|
|
{
|
|
src: '/screenshots/p2.png',
|
|
form_factor: 'wide',
|
|
sizes: '2560x1600',
|
|
},
|
|
{
|
|
src: '/screenshots/p1_small.png',
|
|
form_factor: 'narrow',
|
|
sizes: '828x1792',
|
|
},
|
|
{
|
|
src: '/screenshots/p2_small.png',
|
|
form_factor: 'narrow',
|
|
sizes: '828x1792',
|
|
},
|
|
],
|
|
icons: [
|
|
{
|
|
src: '/icon-50.png',
|
|
sizes: '50x50',
|
|
type: 'image/png' as const,
|
|
},
|
|
{
|
|
src: '/icon-100.png',
|
|
sizes: '100x100',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
src: '/icon.png',
|
|
sizes: '440x440',
|
|
type: 'image/png',
|
|
purpose: 'any',
|
|
},
|
|
],
|
|
};
|
|
}
|