diff --git a/src-ts/tools/learn/certification-details/certification-curriculum/curriculum-cards/course-card/CourseCard.tsx b/src-ts/tools/learn/certification-details/certification-curriculum/curriculum-cards/course-card/CourseCard.tsx index 1df6660a2..da649cf79 100644 --- a/src-ts/tools/learn/certification-details/certification-curriculum/curriculum-cards/course-card/CourseCard.tsx +++ b/src-ts/tools/learn/certification-details/certification-curriculum/curriculum-cards/course-card/CourseCard.tsx @@ -2,6 +2,7 @@ import { FC, ReactNode } from 'react' import { Button, IconSolid, ProgressBar } from '../../../../../../lib' import { + clearFCCCertificationTitle, CompletionTimeRange, LearnCertification, LearnLevelIcon, @@ -91,7 +92,7 @@ const CourseCard: FC = (props: CourseCardProps) => { return ( = [ { @@ -41,15 +41,14 @@ export const FAQs: Array = [ { description: `

- Topcoder is new to the education space and we are working hard to find the right content - partners to build more and better certifications for our members. - We have a long history of competition and ratings - once we pour the secret sauce onto certifications, - this will become awesome. We will get better, this is just the starting point. + We have a long history of producing and recognizing top technical talent. + Our ratings are reliable measures of expertise and have been trusted by companies like Google. + When you infuse our history with the learning space, we can create the perfect recipe for you to learn, + earn and thrive at Topcoder and beyond.

`, title: ` - Can’t I just enroll for a similar certification from Coursera or other similar companies? - What makes this different? + Why should I learn at Topcoder vs. other platforms? `, }, ] diff --git a/src-ts/tools/learn/certification-details/certification-details-modal/certif-details-content/data/perks.data.tsx b/src-ts/tools/learn/certification-details/certification-details-modal/certif-details-content/data/perks.data.tsx index d784c31b2..7bb328f81 100644 --- a/src-ts/tools/learn/certification-details/certification-details-modal/certif-details-content/data/perks.data.tsx +++ b/src-ts/tools/learn/certification-details/certification-details-modal/certif-details-content/data/perks.data.tsx @@ -29,7 +29,7 @@ export const perks: Array = [ }, { description: ` - Topcoder has been grooming top developers for over 20 years. + Topcoder has been engaging and up-skilling top developers for over 20 years. `, icon: 'shield-check', title: 'Trusted Platform', diff --git a/src-ts/tools/learn/learn-lib/functions/clean-fcc-certif-title.ts b/src-ts/tools/learn/learn-lib/functions/clean-fcc-certif-title.ts new file mode 100644 index 000000000..e3f39676c --- /dev/null +++ b/src-ts/tools/learn/learn-lib/functions/clean-fcc-certif-title.ts @@ -0,0 +1,6 @@ +/** + * Removes the "certification" at the end of an FCC certificaiton's title + */ +export const clearFCCCertificationTitle: (title: string) => string = (title: string): string => ( + title.replace(/\s*Certification\s*$/i, '') +) diff --git a/src-ts/tools/learn/learn-lib/functions/index.ts b/src-ts/tools/learn/learn-lib/functions/index.ts index 56af13608..4b1cda188 100644 --- a/src-ts/tools/learn/learn-lib/functions/index.ts +++ b/src-ts/tools/learn/learn-lib/functions/index.ts @@ -6,3 +6,4 @@ export { putAsync as learnXhrPutAsync, } from './learn-xhr.functions' export { hideSiblings } from './hide-siblings' +export * from './clean-fcc-certif-title' diff --git a/src-ts/tools/learn/learn-lib/index.ts b/src-ts/tools/learn/learn-lib/index.ts index 3f19bc080..38f44b353 100755 --- a/src-ts/tools/learn/learn-lib/index.ts +++ b/src-ts/tools/learn/learn-lib/index.ts @@ -6,6 +6,7 @@ export * from './course-outline' export * from './course-title' export * from './curriculum-summary' export * from './data-providers' +export * from './functions' export * from './dynamic-icons' export * from './learn-breadcrumb-provider' export * from './learn-swr'