From a322d74f3fc07ce5f9c01e9a944027e0a595f357 Mon Sep 17 00:00:00 2001 From: MaryWylde Date: Fri, 12 Dec 2025 13:39:27 +0400 Subject: [PATCH 1/3] chore: security patch react 19.0.3 --- package.json | 4 ++-- public/robots.txt | 2 -- yarn.lock | 16 ++++++++-------- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index cc8331c..943aa9d 100644 --- a/package.json +++ b/package.json @@ -35,11 +35,11 @@ "next-auth": "4.23.2", "nodemailer": "^6.10.0", "prettier": "^3.6.2", - "react": "19.0.1", + "react": "19.0.3", "react-beautiful-dnd": "13.1.1", "react-confetti": "6.1.0", "react-confetti-explosion": "2.1.2", - "react-dom": "19.0.1", + "react-dom": "19.0.3", "react-ga4": "1.4.1", "react-intersection-observer": "^9.16.0", "react-loading-skeleton": "3.4.0", diff --git a/public/robots.txt b/public/robots.txt index 1c06dd8..550ed2a 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -25,5 +25,3 @@ Disallow: /hy/all-about-user-stories/ Disallow: /hy/client-dev-company-workflow-birds-eye-view/ Disallow: /hy/career-path-of-a-manager-and-a-few-universal-tips/ Disallow: /hy/overengineering_and_demo_readiness/ - -Sitemap: https://staging-strapi.keepsimple.io/sitemap/index.xml diff --git a/yarn.lock b/yarn.lock index 548eee6..22c1d1a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4951,10 +4951,10 @@ react-display-name@^0.2.4: resolved "https://registry.yarnpkg.com/react-display-name/-/react-display-name-0.2.5.tgz#304c7cbfb59ee40389d436e1a822c17fe27936c6" integrity sha512-I+vcaK9t4+kypiSgaiVWAipqHRXYmZIuAiS8vzFvXHHXVigg/sMKwlRgLy6LH2i3rmP+0Vzfl5lFsFRwF1r3pg== -react-dom@19.0.1: - version "19.0.1" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.1.tgz#b856cbfe38e002b485803d5a0692ee600832edbd" - integrity sha512-3TJg51HSbJiLVYCS6vWwWsyqoS36aGEOCmtLLHxROlSZZ5Bk10xpxHFbrCu4DdqgR85DDc9Vucxqhai3g2xjtA== +react-dom@19.0.3: + version "19.0.3" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.3.tgz#517de15717f686dd6e39488434b6dd18f01ef1fb" + integrity sha512-a7ezLfxibhu6fZBVLwy6WEd3Jn/4H8JYVO8K8GtBfRf1Pl+ox7KFoMCzAGlxLZUXo0t44YZShzhhoDH3yMVdxQ== dependencies: scheduler "^0.25.0" @@ -5057,10 +5057,10 @@ react-tooltip@5.27.1: "@floating-ui/dom" "^1.6.1" classnames "^2.3.0" -react@19.0.1: - version "19.0.1" - resolved "https://registry.yarnpkg.com/react/-/react-19.0.1.tgz#0fb9523201af5f8c7aee753a825d1d9d2f9769db" - integrity sha512-nVRaZCuEyvu69sWrkdwjP6QY57C+lY+uMNNMyWUFJb9Z/JlaBOQus7mSMfGYsblv7R691u6SSJA/dX9IRnyyLQ== +react@19.0.3: + version "19.0.3" + resolved "https://registry.yarnpkg.com/react/-/react-19.0.3.tgz#dc803a2316a97d8a1619bf460353c8ccdb7d3a60" + integrity sha512-owzQanTgpB8GF7pVL6mUwZZyhKzFePi9++GkFk54i9PRU0jq+z7v9Mwg7PAZJYCiYl5YwcyQGGq5/PLkesd8nw== readdirp@~3.6.0: version "3.6.0" From cb5ae8157421047080f35a018b4f183b1d5e6560 Mon Sep 17 00:00:00 2001 From: MaryWylde Date: Tue, 23 Dec 2025 18:05:04 +0400 Subject: [PATCH 2/3] chore: Add new year logo - remove underline of active state on mobile header --- src/components/Header/Header.tsx | 4 ++-- src/components/Navbar/Navbar.module.scss | 17 +++++++++++++++++ .../PyramidInfoSection/PyramidInfoSection.tsx | 8 +++++++- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index c5b97e7..ad924e3 100644 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -70,8 +70,8 @@ const Header: FC = () => { }} src={ isDarkTheme - ? '/keepsimple_/assets/logos/keepsimpleDark.svg' - : '/keepsimple_/assets/logos/keepsimple-company-mngmnt.svg' + ? '/keepsimple_/assets/logos/keepsimpleNewYearDark.svg' + : '/keepsimple_/assets/logos/keepsimpleNewYear.svg' } alt="keepsimple logo" width={130.61} diff --git a/src/components/Navbar/Navbar.module.scss b/src/components/Navbar/Navbar.module.scss index af6fce0..4501c9a 100644 --- a/src/components/Navbar/Navbar.module.scss +++ b/src/components/Navbar/Navbar.module.scss @@ -102,6 +102,7 @@ .contributors { color: #fafafa; } + .uxcoreIcon, .companyManagementIcon { svg { @@ -110,6 +111,7 @@ } } } + .url { color: #dadada; @@ -215,8 +217,23 @@ } } + .url { + &:after { + content: none; + } + &:hover { + &:after { + content: none; + } + } + } + .active { border-left: 1px solid #252626; + + &:after { + content: none; + } } &.authorized { diff --git a/src/components/_company-management/PyramidInfoSection/PyramidInfoSection.tsx b/src/components/_company-management/PyramidInfoSection/PyramidInfoSection.tsx index 96213f6..259fdf5 100644 --- a/src/components/_company-management/PyramidInfoSection/PyramidInfoSection.tsx +++ b/src/components/_company-management/PyramidInfoSection/PyramidInfoSection.tsx @@ -168,7 +168,13 @@ const PyramidInfoSection: FC = ({
- {title} + {title}

{title}

From e1572c0861c88869c9e725f21447786d3eff52cc Mon Sep 17 00:00:00 2001 From: MaryWylde Date: Wed, 24 Dec 2025 13:32:20 +0400 Subject: [PATCH 3/3] chore: fix size of usedBy logos --- src/components/UsedBy/UsedBy.module.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/UsedBy/UsedBy.module.scss b/src/components/UsedBy/UsedBy.module.scss index b06e14a..8e3eb01 100644 --- a/src/components/UsedBy/UsedBy.module.scss +++ b/src/components/UsedBy/UsedBy.module.scss @@ -93,7 +93,6 @@ } .img { - width: auto; height: auto; max-height: 100%; object-fit: contain;