Skip to content

TCA-1048 remove certif wording -> dev #533

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { FC, ReactNode } from 'react'

import { Button, IconSolid, ProgressBar } from '../../../../../../lib'
import {
clearFCCCertificationTitle,
CompletionTimeRange,
LearnCertification,
LearnLevelIcon,
Expand Down Expand Up @@ -91,7 +92,7 @@ const CourseCard: FC<CourseCardProps> = (props: CourseCardProps) => {
return (
<CurriculumCard
badgeTrackType={props.certification.certificationCategory.track ?? 'DEV'}
title={props.certification.title ?? 'Responsive Web Design Certification'}
title={clearFCCCertificationTitle(props.certification.title)}
cta={renderCta()}
status={props.isEnrolled ? props.progress?.status : undefined}
content={(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type FaqEntry } from '../accordion/Accordion'
import { FaqEntry } from '../../../accordion/Accordion';

export const FAQs: Array<FaqEntry> = [
{
Expand Down Expand Up @@ -41,15 +41,14 @@ export const FAQs: Array<FaqEntry> = [
{
description: `
<p>
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.
</p>
`,
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?
`,
},
]
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const perks: Array<PerkItem> = [
},
{
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',
Expand Down
Original file line number Diff line number Diff line change
@@ -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, '')
)
1 change: 1 addition & 0 deletions src-ts/tools/learn/learn-lib/functions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ export {
putAsync as learnXhrPutAsync,
} from './learn-xhr.functions'
export { hideSiblings } from './hide-siblings'
export * from './clean-fcc-certif-title'
1 change: 1 addition & 0 deletions src-ts/tools/learn/learn-lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down