diff --git a/public/images/facr_auth_logo.png b/public/images/facr_auth_logo.png
index 56fa0150..7dfc010e 100644
Binary files a/public/images/facr_auth_logo.png and b/public/images/facr_auth_logo.png differ
diff --git a/src/components/PoweredByInsportsIcon/index.tsx b/src/components/PoweredByInsportsIcon/index.tsx
new file mode 100644
index 00000000..48783e5b
--- /dev/null
+++ b/src/components/PoweredByInsportsIcon/index.tsx
@@ -0,0 +1,5 @@
+import { Icon } from 'features/Icon'
+
+export const PoweredByInsportsIcon = () => (
+
+)
diff --git a/src/config/clients/facr.tsx b/src/config/clients/facr.tsx
index 3f101e56..e94e3a06 100644
--- a/src/config/clients/facr.tsx
+++ b/src/config/clients/facr.tsx
@@ -38,7 +38,7 @@ export const facr: ClientConfig = {
homePageHeader: css`
background: linear-gradient(83.42deg, #00257A 53.04%, rgba(0, 0, 0, 0) 94.83%), #000000;
`,
- logo: 'facr-logo.svg',
+ logo: 'facr_auth_logo.png',
logoHeight: 4.76,
logoLeft: 1.17,
logoTop: 1.74,
diff --git a/src/features/TournamentsPopup/config.tsx b/src/features/TournamentsPopup/config.tsx
index 94fdc081..31d7b72d 100644
--- a/src/features/TournamentsPopup/config.tsx
+++ b/src/features/TournamentsPopup/config.tsx
@@ -1,6 +1,6 @@
export const sportId = 1
-export const tournamentsId = [227, 946, 3067, 5665]
+export const tournamentsId = [227, 946, 3067, 5987, 5665]
export const teamsId = [
23,
diff --git a/src/features/UserAccount/components/PoweredByInstat/PoweredByInstat.tsx b/src/features/UserAccount/components/PoweredByInsports/PoweredByInsports.tsx
similarity index 63%
rename from src/features/UserAccount/components/PoweredByInstat/PoweredByInstat.tsx
rename to src/features/UserAccount/components/PoweredByInsports/PoweredByInsports.tsx
index 405a6f4f..a6e7825b 100644
--- a/src/features/UserAccount/components/PoweredByInstat/PoweredByInstat.tsx
+++ b/src/features/UserAccount/components/PoweredByInsports/PoweredByInsports.tsx
@@ -1,6 +1,6 @@
import styled from 'styled-components'
-import { PoweredByInstatIcon } from 'components/PoweredByInstatIcon'
+import { PoweredByInsportsIcon } from 'components/PoweredByInsportsIcon'
import { devices } from '../../../../config'
const Wrapper = styled.div`
@@ -13,8 +13,8 @@ const Wrapper = styled.div`
}
`
-export const PoweredByInstat = () => (
+export const PoweredByInsports = () => (
-
+
)
diff --git a/src/features/UserAccount/index.tsx b/src/features/UserAccount/index.tsx
index b11dcddb..a1fd24bd 100644
--- a/src/features/UserAccount/index.tsx
+++ b/src/features/UserAccount/index.tsx
@@ -36,7 +36,7 @@ import {
ScButtonGetHighlight,
} from './styled'
import { CompanyInfo } from '../CompanyInfo'
-import { PoweredByInstat } from './components/PoweredByInstat/PoweredByInstat'
+import { PoweredByInsports } from './components/PoweredByInsports/PoweredByInsports'
const UserAccount = () => {
const { user } = useAuthStore()
@@ -110,7 +110,7 @@ const UserAccount = () => {