Skip to content

Commit 463402f

Browse files
authored
Feat: Add Manifest for Generating Metadata (#607)
1 parent 4929f23 commit 463402f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

app/manifest.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { MetadataRoute } from "next";
2+
3+
export default function manifest(): MetadataRoute.Manifest {
4+
return {
5+
name: "Codú",
6+
short_name: "Codú",
7+
description:
8+
"A free network and community for web developers. Learn and grow together.",
9+
start_url: ".",
10+
display: "standalone",
11+
background_color: "#fff",
12+
theme_color: "#fff",
13+
icons: [
14+
{
15+
src: "/favicon.ico",
16+
sizes: "any",
17+
type: "image/x-icon",
18+
},
19+
],
20+
};
21+
}

0 commit comments

Comments
 (0)