26 lines
710 B
TypeScript
26 lines
710 B
TypeScript
import type { MetadataRoute } from 'next'
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: "MiniPerplx - AI-powered Search Engine",
|
|
short_name: "MiniPerplx",
|
|
description: "A minimalistic AI-powered search engine that helps you find information on the internet using advanced AI models like GPT-4, Claude, and Grok",
|
|
start_url: "/",
|
|
display: "standalone",
|
|
categories: ["search", "ai", "productivity"],
|
|
icons: [
|
|
{
|
|
src: "/favicon.ico",
|
|
sizes: "any",
|
|
type: "image/x-icon"
|
|
},
|
|
],
|
|
screenshots: [
|
|
{
|
|
src: "/opengraph-image.png",
|
|
type: "image/png",
|
|
sizes: "1200x630",
|
|
}
|
|
]
|
|
}
|
|
} |