forked from Bitcoindefi/OpenAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.ts
More file actions
28 lines (27 loc) · 781 Bytes
/
Copy pathmanifest.ts
File metadata and controls
28 lines (27 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import type { MetadataRoute } from "next";
import { siteDescription, siteName } from "@/lib/seo";
export default function manifest(): MetadataRoute.Manifest {
return {
name: siteName,
short_name: siteName,
description: siteDescription,
start_url: "/",
display: "standalone",
background_color: "#08111f",
theme_color: "#08111f",
lang: "es-AR",
categories: ["games", "entertainment"],
icons: [
{
src: "/favicon.ico",
sizes: "any",
type: "image/x-icon",
},
{
src: "/static/imgs/logo-aoweb.png",
sizes: "512x512",
type: "image/png",
},
],
};
}