From 1f77dd3595ae3b65f1566110d92818032d65a894 Mon Sep 17 00:00:00 2001 From: Arun Jain Date: Tue, 19 Aug 2025 16:43:26 +0530 Subject: [PATCH 1/4] feat: edit devtron reviews --- package-lock.json | 4 +-- package.json | 2 +- src/Assets/IconV2/ic-apica.svg | 31 ------------------- .../Components/License/DevtronLicenseCard.tsx | 26 +++++++++------- .../Components/LoginBanner/constants.tsx | 6 ---- 5 files changed, 18 insertions(+), 51 deletions(-) delete mode 100755 src/Assets/IconV2/ic-apica.svg diff --git a/package-lock.json b/package-lock.json index d75d766b9..97e273d82 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@devtron-labs/devtron-fe-common-lib", - "version": "1.19.2", + "version": "1.19.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@devtron-labs/devtron-fe-common-lib", - "version": "1.19.2", + "version": "1.19.3", "hasInstallScript": true, "license": "ISC", "dependencies": { diff --git a/package.json b/package.json index fe0fdc972..8bbf34c38 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@devtron-labs/devtron-fe-common-lib", - "version": "1.19.2", + "version": "1.19.3", "description": "Supporting common component library", "type": "module", "main": "dist/index.js", diff --git a/src/Assets/IconV2/ic-apica.svg b/src/Assets/IconV2/ic-apica.svg deleted file mode 100755 index 3dd30b311..000000000 --- a/src/Assets/IconV2/ic-apica.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/Shared/Components/License/DevtronLicenseCard.tsx b/src/Shared/Components/License/DevtronLicenseCard.tsx index f8934f70a..310c0617c 100644 --- a/src/Shared/Components/License/DevtronLicenseCard.tsx +++ b/src/Shared/Components/License/DevtronLicenseCard.tsx @@ -73,17 +73,21 @@ const LicenseCardSubText = ({ size={20} /> -
-
- + {freemiumLimitReached && ( + <> +
+
+ + + )} ) } diff --git a/src/Shared/Components/LoginBanner/constants.tsx b/src/Shared/Components/LoginBanner/constants.tsx index 75cdb05e4..612d37b4d 100644 --- a/src/Shared/Components/LoginBanner/constants.tsx +++ b/src/Shared/Components/LoginBanner/constants.tsx @@ -47,12 +47,6 @@ export const TESTIMONIAL_CARD_DATA: TestimonialCardConfig[] = [ name: 'Vinod Vijapur', iconName: 'ic-73strings', }, - { - quote: 'Partnering with Devtron has revolutionized the way we deliver solutions to our customers. Their Kubernetes-native platform has empowered us to automate and scale our deployments, reducing time-to-market and significantly boosting DevOps efficiency. The collaboration has not only streamlined our processes but also enhanced our ability to serve customers with agility and precision.', - designation: 'CPTO at Apica', - name: 'Ranjan Parthasarathy', - iconName: 'ic-apica', - }, { quote: "Devtron CI has been instrumental in our migration to ARM architecture. The automation and efficiency it provides have not only cut costs but also significantly improved our system performance. Devtron's support made the transition smooth and effective, setting a new standard for our infrastructure operations.", designation: 'Principal Engineer at Spinny', From e9decf4d897bdf2f9c10cac1c4461a3fb4dc16a1 Mon Sep 17 00:00:00 2001 From: Arun Jain Date: Tue, 19 Aug 2025 16:43:56 +0530 Subject: [PATCH 2/4] chore: delete icon --- src/Shared/Components/Icon/Icon.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Shared/Components/Icon/Icon.tsx b/src/Shared/Components/Icon/Icon.tsx index 50d4f62b7..b719bf0bb 100644 --- a/src/Shared/Components/Icon/Icon.tsx +++ b/src/Shared/Components/Icon/Icon.tsx @@ -5,7 +5,6 @@ import { ReactComponent as ICAborted } from '@IconsV2/ic-aborted.svg' import { ReactComponent as ICActivity } from '@IconsV2/ic-activity.svg' import { ReactComponent as ICAdd } from '@IconsV2/ic-add.svg' import { ReactComponent as ICAmazonEks } from '@IconsV2/ic-amazon-eks.svg' -import { ReactComponent as ICApica } from '@IconsV2/ic-apica.svg' import { ReactComponent as ICAppGroup } from '@IconsV2/ic-app-group.svg' import { ReactComponent as ICAppTemplate } from '@IconsV2/ic-app-template.svg' import { ReactComponent as ICArrowClockwise } from '@IconsV2/ic-arrow-clockwise.svg' @@ -232,7 +231,6 @@ export const iconMap = { 'ic-activity': ICActivity, 'ic-add': ICAdd, 'ic-amazon-eks': ICAmazonEks, - 'ic-apica': ICApica, 'ic-app-group': ICAppGroup, 'ic-app-template': ICAppTemplate, 'ic-arrow-clockwise': ICArrowClockwise, From 7c60b88c41abeea499dfe8b6f669be25c543181e Mon Sep 17 00:00:00 2001 From: Arun Jain Date: Tue, 19 Aug 2025 17:20:02 +0530 Subject: [PATCH 3/4] chore: add contact sales link --- src/Shared/constants.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Shared/constants.tsx b/src/Shared/constants.tsx index c5bfd815e..a644380a6 100644 --- a/src/Shared/constants.tsx +++ b/src/Shared/constants.tsx @@ -529,6 +529,7 @@ export const EULA_LINK = 'https://devtron.ai/end-user-license-agreement-eula' export const CONTACT_SUPPORT_LINK = 'https://devtron.ai/enterprise-support' export const PRIVACY_POLICY_LINK = 'https://devtron.ai/privacy-policy' export const TERMS_OF_USE_LINK = 'https://devtron.ai/terms-of-use' +export const CONTACT_SALES_LINK = 'https://devtron.ai/contact-sales' export const enum DeleteComponentsName { Cluster = 'cluster', From 2477c44b94e198fa2af3a255c6f9deb3f67e0195 Mon Sep 17 00:00:00 2001 From: Arun Jain Date: Tue, 19 Aug 2025 17:24:45 +0530 Subject: [PATCH 4/4] chore: remove lazy loading from login image --- src/Shared/Components/LoginBanner/LoginBanner.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Shared/Components/LoginBanner/LoginBanner.tsx b/src/Shared/Components/LoginBanner/LoginBanner.tsx index 870f21cd6..d05861228 100644 --- a/src/Shared/Components/LoginBanner/LoginBanner.tsx +++ b/src/Shared/Components/LoginBanner/LoginBanner.tsx @@ -162,7 +162,6 @@ const LoginBanner = () => { style={{ maxHeight: '90%', }} - loading="lazy" />