{t("auth.loginSubtitle")}
``` 5. **OAuth provider SVG icons:** Replace the plain text-only Google and GitHub buttons with inline SVG icons. Add a small (size-4) SVG before the text label in each button: For Google button, add before "Google" text: ```tsx ``` For GitHub button, add before "GitHub" text: ```tsx ``` Add `gap-2` to each Button's className to space the icon and text. The buttons already have `className="flex-1"` -- add `gap-2` via the className string. 6. **i18n keys:** Add to en.json inside the "auth" object: - `"loginSubtitle": "Sign in to your account"` - `"registerSubtitle": "Create a new account"` Add to de.json inside the "auth" object: - `"loginSubtitle": "Melde dich bei deinem Konto an"` - `"registerSubtitle": "Erstelle ein neues Konto"` IMPORTANT: Update both en.json and de.json atomically in this task. Do not leave any raw i18n key strings.{t("auth.registerSubtitle")}
``` The i18n key `auth.registerSubtitle` was already added in Task 1. 5. **CardHeader padding:** Add `pb-4` to CardHeader className to match LoginPage spacing: `className="text-center pb-4"`. Also apply `pb-4` to LoginPage's CardHeader if not already done in Task 1 (add `className="text-center pb-4"`). Do NOT add OAuth buttons to RegisterPage -- it only has email/password registration. The existing "Already have an account?" link stays as-is.