Skip to content

Commit c835560

Browse files
authored
Added dynamic manifest.json
1 parent e0e4b2e commit c835560

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/app/manifest.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import type { MetadataRoute } from 'next'
2+
3+
export default function manifest(): MetadataRoute.Manifest {
4+
return {
5+
name: "ArsenTech's Blog Site",
6+
short_name: "ArsenTech Blog",
7+
description: "Welcome to ArsenTech's Official Blog Site — your go-to hub for tech tutorials, antivirus comparisons, and in-depth guides for programmers, tech enthusiasts, and more tech related curious minds."
8+
start_url: '/',
9+
display: 'standalone',
10+
background_color: '#fff',
11+
theme_color: '#22b455',
12+
icons: [
13+
{
14+
src: '/favicon.ico',
15+
sizes: 'any',
16+
type: 'image/x-icon',
17+
},
18+
{
19+
src: "/app-icon.png",
20+
sizes: "192x192",
21+
type: "image/png",
22+
purpose: "maskable any"
23+
}
24+
],
25+
],
26+
}
27+
}

0 commit comments

Comments
 (0)