@@ -3,7 +3,7 @@ import ArrowButton from "@/components/ui/button/Arrow";
3
3
import Link from "next/link" ;
4
4
import { useTranslation } from "next-i18next" ;
5
5
import Tag from "../ui/Tag" ;
6
- import { DurationCard } from "../ui /Duration" ;
6
+ import { DurationCard } from "@/components/badges /Duration" ;
7
7
import { useMultiSelector } from "@/hooks/useTypedSelector" ;
8
8
import { IRootState } from "@/store" ;
9
9
import { LearningModule } from "@/types/course" ;
@@ -37,7 +37,7 @@ export function LearningModuleCard({ data }: { data: LearningModule }): JSX.Elem
37
37
< div className = "flex text-xs items-center justify-between" >
38
38
< div className = "gap-2 flex items-center" >
39
39
< div className = "h-4.5 w-4.5 rounded-sm" style = { { backgroundColor : colors ?. primary } } />
40
- < span className = "uppercase" > { t ( "communities.card.module" ) } </ span >
40
+ < span className = "uppercase font-semibold " > { t ( "communities.card.module" ) } </ span >
41
41
</ div >
42
42
< div className = "gap-2 flex items-center" >
43
43
< Tag className = "uppercase" > { t ( level ) } </ Tag >
@@ -70,7 +70,7 @@ export function LearningModuleCard({ data }: { data: LearningModule }): JSX.Elem
70
70
< div className = "w-full mb-0 justify-self-end" >
71
71
< Link href = { `/communities/${ community . slug } /challenges/${ challenge ?. id } /learning-modules/${ data . id } ` } >
72
72
< ArrowButton communityStyles = { true } variant = "outline-primary" >
73
- Start now
73
+ { t ( "communities.overview.challenge.learning.start" ) }
74
74
</ ArrowButton >
75
75
</ Link >
76
76
</ div >
0 commit comments