diff --git a/client/src/Components/Fallback/FallBackActionButtons.jsx b/client/src/Components/Fallback/FallBackActionButtons.jsx
index fbe8fe807..144b16501 100644
--- a/client/src/Components/Fallback/FallBackActionButtons.jsx
+++ b/client/src/Components/Fallback/FallBackActionButtons.jsx
@@ -17,6 +17,7 @@ const FallbackActionButtons = ({ link, type }) => {
diff --git a/client/src/Pages/Auth/components/AuthHeader.jsx b/client/src/Pages/Auth/components/AuthHeader.jsx
index c6ad46a47..ce454c065 100644
--- a/client/src/Pages/Auth/components/AuthHeader.jsx
+++ b/client/src/Pages/Auth/components/AuthHeader.jsx
@@ -9,7 +9,7 @@ import ThemeSwitch from "../../../Components/ThemeSwitch";
import { useTheme } from "@mui/material/styles";
import { useTranslation } from "react-i18next";
-const AuthHeader = () => {
+const AuthHeader = ({ hideLogo = false }) => {
// Hooks
const theme = useTheme();
const { t } = useTranslation();
@@ -27,8 +27,12 @@ const AuthHeader = () => {
alignItems="center"
gap={theme.spacing(4)}
>
-
- {t("common.appName")}
+ {!hideLogo && (
+ <>
+
+ {t("common.appName")}
+ >
+ )}
({
style: {
backgroundColor: theme.palette.accent.main,
color: theme.palette.primary.contrastTextSecondaryDarkBg,
- fontWeight: 700,
letterSpacing: "0.5px",
textShadow: "0 0 1px rgba(0, 0, 0, 0.15)",
"&:hover": {
@@ -723,6 +722,14 @@ const baseTheme = (palette) => ({
},
],
},
+
+ MuiTooltip: {
+ styleOverrides: {
+ tooltip: () => ({
+ fontSize: typographyLevels.m,
+ }),
+ },
+ },
},
shape: {
borderRadius: 2,
diff --git a/client/src/locales/en.json b/client/src/locales/en.json
index 584894543..669e322a5 100644
--- a/client/src/locales/en.json
+++ b/client/src/locales/en.json
@@ -154,7 +154,7 @@
"incorrect": "The password you provided does not match our records"
}
},
- "heading": "Log In",
+ "heading": "Log in to continue",
"links": {
"forgotPassword": "Forgot password?",
"forgotPasswordLink": "Reset password",
@@ -168,7 +168,8 @@
"toasts": {
"incorrectPassword": "Incorrect password",
"success": "Welcome back! You're successfully logged in."
- }
+ },
+ "welcome": "Welcome back to Checkmate!"
},
"registration": {
"description": {