Skip to content

Commit 220134f

Browse files
committed
feat: actually good favicon/icon, add manifest
1 parent d3028e6 commit 220134f

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

apps/web/src/app/icon.svg

Lines changed: 15 additions & 0 deletions
Loading

apps/web/src/app/manifest.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import type { MetadataRoute } from "next";
2+
3+
export default function manifest(): MetadataRoute.Manifest {
4+
return {
5+
name: "Stardust",
6+
short_name: "Stardust",
7+
description: "Stardust is the platform for streaming isolated desktop containers.",
8+
start_url: "/",
9+
display: "standalone",
10+
background_color: "#1e1e2e",
11+
theme_color: "#cba6f7",
12+
icons: [
13+
{
14+
src: "/icon.svg",
15+
sizes: "192x192",
16+
},
17+
{
18+
src: "/icon.svg",
19+
sizes: "512x512",
20+
},
21+
],
22+
};
23+
}

0 commit comments

Comments
 (0)