File tree Expand file tree Collapse file tree 6 files changed +17
-9
lines changed
certification-curriculum/curriculum-cards/course-card
certification-details-modal/certif-details-content/data Expand file tree Collapse file tree 6 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { FC, ReactNode } from 'react'
22
33import { Button , IconSolid , ProgressBar } from '../../../../../../lib'
44import {
5+ clearFCCCertificationTitle ,
56 CompletionTimeRange ,
67 LearnCertification ,
78 LearnLevelIcon ,
@@ -91,7 +92,7 @@ const CourseCard: FC<CourseCardProps> = (props: CourseCardProps) => {
9192 return (
9293 < CurriculumCard
9394 badgeTrackType = { props . certification . certificationCategory . track ?? 'DEV' }
94- title = { props . certification . title ?? 'Responsive Web Design Certification' }
95+ title = { clearFCCCertificationTitle ( props . certification . title ) }
9596 cta = { renderCta ( ) }
9697 status = { props . isEnrolled ? props . progress ?. status : undefined }
9798 content = { (
Original file line number Diff line number Diff line change 1- import { type FaqEntry } from '../accordion/Accordion'
1+ import { FaqEntry } from '../../../ accordion/Accordion' ;
22
33export const FAQs : Array < FaqEntry > = [
44 {
@@ -41,15 +41,14 @@ export const FAQs: Array<FaqEntry> = [
4141 {
4242 description : `
4343 <p>
44- Topcoder is new to the education space and we are working hard to find the right content
45- partners to build more and better certifications for our members .
46- We have a long history of competition and ratings - once we pour the secret sauce onto certifications ,
47- this will become awesome. We will get better, this is just the starting point .
44+ We have a long history of producing and recognizing top technical talent.
45+ Our ratings are reliable measures of expertise and have been trusted by companies like Google .
46+ When you infuse our history with the learning space, we can create the perfect recipe for you to learn ,
47+ earn and thrive at Topcoder and beyond .
4848 </p>
4949 ` ,
5050 title : `
51- Can’t I just enroll for a similar certification from Coursera or other similar companies?
52- What makes this different?
51+ Why should I learn at Topcoder vs. other platforms?
5352 ` ,
5453 } ,
5554]
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export const perks: Array<PerkItem> = [
2929 } ,
3030 {
3131 description : `
32- Topcoder has been grooming top developers for over 20 years.
32+ Topcoder has been engaging and up-skilling top developers for over 20 years.
3333 ` ,
3434 icon : 'shield-check' ,
3535 title : 'Trusted Platform' ,
Original file line number Diff line number Diff line change 1+ /**
2+ * Removes the "certification" at the end of an FCC certificaiton's title
3+ */
4+ export const clearFCCCertificationTitle : ( title : string ) => string = ( title : string ) : string => (
5+ title . replace ( / \s * C e r t i f i c a t i o n \s * $ / i, '' )
6+ )
Original file line number Diff line number Diff line change 66 putAsync as learnXhrPutAsync ,
77} from './learn-xhr.functions'
88export { hideSiblings } from './hide-siblings'
9+ export * from './clean-fcc-certif-title'
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export * from './course-outline'
66export * from './course-title'
77export * from './curriculum-summary'
88export * from './data-providers'
9+ export * from './functions'
910export * from './dynamic-icons'
1011export * from './learn-breadcrumb-provider'
1112export * from './learn-swr'
You can’t perform that action at this time.
0 commit comments