diff --git a/app/frontend_static.py b/app/frontend_static.py index 17e4e359..99591e1f 100644 --- a/app/frontend_static.py +++ b/app/frontend_static.py @@ -148,6 +148,39 @@ def register_frontend_static_routes(app: FastAPI, frontend_dir: Path) -> bool: "type": "image/png", "purpose": "maskable", }, + { + "src": f"{base}favicon.svg", + "sizes": "any", + "type": "image/svg+xml", + "purpose": "any", + }, + { + "src": f"{base}favicon-256x256.png", + "sizes": "256x256", + "type": "image/png", + "purpose": "any", + }, + ], + "screenshots": [ + { + "src": f"{base}screenshot-wide.png", + "sizes": "1367x909", + "type": "image/png", + "form_factor": "wide", + "label": "RemoteTerm desktop view", + }, + { + "src": f"{base}screenshot-mobile.png", + "sizes": "1170x2532", + "type": "image/png", + "label": "RemoteTerm mobile view", + }, + { + "src": f"{base}screenshot-mobile-2.png", + "sizes": "750x1334", + "type": "image/png", + "label": "RemoteTerm mobile conversation", + }, ], } return JSONResponse( diff --git a/frontend/public/screenshot-mobile-2.png b/frontend/public/screenshot-mobile-2.png new file mode 100644 index 00000000..1c61fe69 Binary files /dev/null and b/frontend/public/screenshot-mobile-2.png differ diff --git a/frontend/public/screenshot-mobile.png b/frontend/public/screenshot-mobile.png new file mode 100644 index 00000000..8223d249 Binary files /dev/null and b/frontend/public/screenshot-mobile.png differ diff --git a/frontend/public/screenshot-wide.png b/frontend/public/screenshot-wide.png new file mode 100644 index 00000000..022e35aa Binary files /dev/null and b/frontend/public/screenshot-wide.png differ