From 527dd340d0de5830e5611fa72be2a59ec42486ee Mon Sep 17 00:00:00 2001 From: Amirul Azreen Date: Fri, 7 Nov 2025 19:58:56 +0800 Subject: [PATCH 1/2] feat: add chip favicon --- apps/client/index.html | 4 ++-- apps/client/public/icons/favicon.ico | Bin 0 -> 1439 bytes apps/client/public/manifest.json | 19 +++++++------------ 3 files changed, 9 insertions(+), 14 deletions(-) create mode 100644 apps/client/public/icons/favicon.ico diff --git a/apps/client/index.html b/apps/client/index.html index 28679e40a..021744649 100644 --- a/apps/client/index.html +++ b/apps/client/index.html @@ -2,8 +2,8 @@ - - + + Docmost diff --git a/apps/client/public/icons/favicon.ico b/apps/client/public/icons/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..fef51ac144d9037c5ab1d2a2b6aea1c3dfc15d98 GIT binary patch literal 1439 zcmV;Q1z`G#P)(fP$VS$3=-v*q`4p!kr$Av za)7uJ2P7m&z5q?HG>)B5fWw8ve!I(W_Sq(JQYT0e7dq1OzTLMoJ2N}KnK985`oELv zUx*6zEI&;%%x;vG%WFkhJj8f3k<&_%Vy84I$1*C6O6G()_12j>JWNgO*-)(FwxjjQ zg3Lrc2Yx2}~fY1E9{-yh6`QpVfo?R=+NrWMg6fV?bO3xpqt;EsHsXHryB zRx+Z+S%NqDC~!5_dS7dCQAd!+7^$e=lE2P-h?cMkKJ`TodCU5lPcv9E!Y?9}^$JR! zky-}$xGWZ5l7t~R_DOt&@OO} z6NLmx=O{qfxvJ!s0I6pKHjhdstN!%(QYuusP?HX+pq!Q*a3BVdEAweAbM@AD!)t@& zpq~h>a~YKXb-Aso*o`_pL&uTkP7#5t`v~hZ0_j$Z){hg@vL=$fKvT@L=d;-k=Cg&D zf6otMjH|gO_QhZhr!UmzyX)^=s+XYvtfF|KI@pU}OmB@C$L}D@wr?!wR=Bzbq0UY@ zsR684k5dBpLjyt$cwu(>V!eFzVy%o|ji5kd&$I@X^iQvBjqL5YDjFCBWE#l56nJU8 z76ApH2ng`R*6?EW=cBu$D{pL#V9y$wi41y3(wcU_Hg>0a^!}Td>!G%`h!~BuM-x?| zyTj1|1%wLYndu^dBRXm34920f zMOS|yuiW_T-g9x!qy5?z#_KrTjN-T=ibNh~XMAc9fa0EfD^9+1PTO=DJMFnB!2C~Z t-cbh4j+6fdYe|b25hDZJwI}qS)8AGdQag!o!#4l`002ovPDHLkV1h;sqV@m) literal 0 HcmV?d00001 diff --git a/apps/client/public/manifest.json b/apps/client/public/manifest.json index 3e4b35dd2..6b3562d24 100644 --- a/apps/client/public/manifest.json +++ b/apps/client/public/manifest.json @@ -7,23 +7,18 @@ "theme_color": "#222", "icons": [ { - "src": "icons/favicon-16x16.png", - "type": "image/png", - "sizes": "16x16" + "src": "icons/favicon.ico", + "type": "image/x-icon", + "sizes": "16x16 32x32" }, { - "src": "icons/favicon-32x32.png", - "type": "image/png", - "sizes": "32x32" - }, - { - "src": "icons/app-icon-192x192.png", - "type": "image/png", + "src": "icons/favicon.ico", + "type": "image/x-icon", "sizes": "180x180 192x192" }, { - "src": "icons/app-icon-512x512.png", - "type": "image/png", + "src": "icons/favicon.ico", + "type": "image/x-icon", "sizes": "512x512" } ] From a099ab3bbf8472d761b710ed7807a674f1721270 Mon Sep 17 00:00:00 2001 From: Amirul Azreen Date: Fri, 7 Nov 2025 20:06:34 +0800 Subject: [PATCH 2/2] feat: add chip logo at login page --- apps/client/src/features/auth/components/login-form.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/auth/components/login-form.tsx b/apps/client/src/features/auth/components/login-form.tsx index e182bb323..90e616e48 100644 --- a/apps/client/src/features/auth/components/login-form.tsx +++ b/apps/client/src/features/auth/components/login-form.tsx @@ -20,6 +20,8 @@ import { useTranslation } from "react-i18next"; import SsoLogin from "@/ee/components/sso-login.tsx"; import { useWorkspacePublicDataQuery } from "@/features/workspace/queries/workspace-query.ts"; import { Error404 } from "@/components/ui/error-404.tsx"; +import chipLogo from '@/assets/Gradient Primary.svg'; + import React from "react"; const formSchema = z.object({ @@ -65,7 +67,7 @@ export function LoginForm() { - {t("Login")} + <img className="text-center" alt="editor" src={chipLogo} width="50%" />