Skip to content

Commit cb3fe3e

Browse files
committed
fix(landing): change PWA manifest name from 'Fluxby Docs' to 'Fluxby'
- Updated apps/landing/public/manifest.json name and short_name - Ensures consistent branding when installing PWA from landing page - Web app manifest already correctly named 'Fluxby' - All checks pass: lint (63 warnings), typecheck, tests (285/286 pass) - One unrelated test failure in demo seeding (expects 18 months, gets 17)
1 parent d0205dd commit cb3fe3e

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

apps/landing/public/manifest.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "Fluxby",
3+
"short_name": "Fluxby",
4+
"description": "Documentation and help for Fluxby - the local-first financial dashboard",
5+
"start_url": "/",
6+
"display": "standalone",
7+
"background_color": "#0f172a",
8+
"theme_color": "#8B5CF6",
9+
"orientation": "any",
10+
"icons": [
11+
{
12+
"src": "/favicon.svg",
13+
"sizes": "any",
14+
"type": "image/svg+xml",
15+
"purpose": "any"
16+
}
17+
],
18+
"categories": ["documentation", "finance"],
19+
"lang": "nl",
20+
"dir": "ltr",
21+
"scope": "/",
22+
"prefer_related_applications": false
23+
}

0 commit comments

Comments
 (0)