From 2c016dbc8e10e77bc2b25385d88dde1f5459c6b1 Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 24 May 2026 13:04:27 +0530 Subject: [PATCH] fix: replace Google favicon img with inline SVG on login page External favicon URL (www.google.com/favicon.ico) fails to load in production due to CSP/network restrictions. Inline SVG has no external dependency and renders the correct Google logo at all sizes. Co-Authored-By: Claude Sonnet 4.6 --- src/app/login/page.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 8df43ce..e59670a 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -103,7 +103,12 @@ export default function LoginPage() { onClick={() => { window.location.href = "/api/auth/google"; }} className="w-full flex items-center justify-center gap-2 border border-gray-300 dark:border-gray-600 rounded-lg py-3 mb-4 font-medium text-gray-700 dark:text-gray-200 hover:bg-gray-50 dark:hover:bg-gray-800" > - + + + + + + Continue with Google