File tree Expand file tree Collapse file tree 5 files changed +40
-9
lines changed
components/common/Card/components/SectionContentCard Expand file tree Collapse file tree 5 files changed +40
-9
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ export const SectionContentCard = ({
3333 < EndIcon { ...SVG_ICON_PROPS } />
3434 < StyledStack { ...STACK_PROPS } >
3535 < CardTitle component = "span" > { title } </ CardTitle >
36- < Typography { ...TYPOGRAPHY_PROPS } > { secondaryText } </ Typography >
36+ { secondaryText && (
37+ < Typography { ...TYPOGRAPHY_PROPS } > { secondaryText } </ Typography >
38+ ) }
3739 </ StyledStack >
3840 </ CardActionArea >
3941 </ StyledCard >
Original file line number Diff line number Diff line change 1+ ---
2+ breadcrumbs :
3+ - path : " /learn"
4+ text : " Learn"
5+ - path : " "
6+ text : " FAQs"
7+ description : " "
8+ enableOutline : true
9+ title : " FAQs"
10+ ---
Original file line number Diff line number Diff line change 1+ ---
2+ breadcrumbs :
3+ - path : " /learn"
4+ text : " Learn"
5+ - path : " "
6+ text : " Getting Started"
7+ description : " "
8+ enableOutline : true
9+ title : " Getting Started"
10+ ---
Original file line number Diff line number Diff line change 1+ ---
2+ breadcrumbs :
3+ - path : " /learn"
4+ text : " Learn"
5+ - path : " "
6+ text : " Using Galaxy"
7+ description : " "
8+ enableOutline : true
9+ title : " Using Galaxy"
10+ ---
Original file line number Diff line number Diff line change @@ -8,27 +8,26 @@ import { GalaxyIcon } from "./components/icon/GalaxyIcon/galaxyIcon";
88export const CARDS : ComponentProps < typeof SectionContentCard > [ ] = [
99 {
1010 StartIcon : RocketLaunchIcon ,
11- cardUrl : "/learn" ,
12- secondaryText : "Learn how to get started with BRC " ,
11+ cardUrl : "/learn/getting-started " ,
12+ secondaryText : "" ,
1313 title : "Get Started" ,
1414 } ,
1515 {
1616 StartIcon : GalaxyIcon ,
17- cardUrl : "/learn" ,
18- secondaryText : "The following is a guided walk-through of using Galaxy " ,
17+ cardUrl : "/learn/using-galaxy " ,
18+ secondaryText : "" ,
1919 title : "Using Galaxy" ,
2020 } ,
2121 {
2222 StartIcon : BookmarkStarIcon ,
2323 cardUrl : "/learn/featured-analyses" ,
24- secondaryText : "Discover and access BRC datasets " ,
24+ secondaryText : "" ,
2525 title : "Featured Analyses" ,
2626 } ,
2727 {
2828 StartIcon : LiveHelpIcon ,
29- cardUrl : "/learn" ,
30- secondaryText :
31- "The following is a guided walk-through of the BRC documentation" ,
29+ cardUrl : "/learn/faqs" ,
30+ secondaryText : "" ,
3231 title : "FAQs" ,
3332 } ,
3433] ;
You can’t perform that action at this time.
0 commit comments