-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updated card content and actions (#66)
- Loading branch information
Fran McDade
authored and
Fran McDade
committed
Sep 26, 2024
1 parent
eb93671
commit a498f68
Showing
4 changed files
with
29 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 13 additions & 2 deletions
15
...ction/components/SectionHero/components/Carousel/content/learnToAnalyzeData.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
### Learn how to analyze your data! | ||
### Analyze your data with Galaxy | ||
|
||
The new BRC-analytics platform will make heavy use of the Galaxy platform for analysis of data. To learn how to use this system or to improve your already existing skills enroll into [Galaxy Academy 2024](https://training.galaxyproject.org/training-material/events/galaxy-academy-2024.html). The Academy is a global online training event that will take place October 7 - 11, 2024. For more information please see [the event page](https://training.galaxyproject.org/training-material/events/galaxy-academy-2024.html). Note that free registration is required. | ||
The BRC-analytics platform makes heavy use of the Galaxy platform for analysis of data. To learn how to use Galaxy, or to improve your already existing skills, enroll in the [Galaxy Academy 2024](https://training.galaxyproject.org/training-material/events/galaxy-academy-2024.html), a global online training event taking place October 7 - 11, 2024. | ||
|
||
<CardActions> | ||
<Link | ||
label="Learn More" | ||
url="https://training.galaxyproject.org/training-material/events/galaxy-academy-2024.html" | ||
/> | ||
<Link | ||
label="Register" | ||
url="https://docs.google.com/forms/d/e/1FAIpQLScFRyDB45TQuMDjUJwQ7lu8kX4YanSoA7P_aqEBRC0PbXKOlw/viewform" | ||
/> | ||
</CardActions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import { Link } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link"; | ||
import { MDXComponents } from "mdx/types"; | ||
import { CardCallToAction } from "./app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Cards/cards.styles"; | ||
import { CardActions } from "./app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Cards/cards.styles"; | ||
|
||
export function useMDXComponents(components: MDXComponents): MDXComponents { | ||
return { | ||
...components, | ||
CardCTA: CardCallToAction, | ||
CardActions, | ||
Link, | ||
a: ({ children, href }) => Link({ label: children, url: href ?? "" }), | ||
}; | ||
} |