diff --git a/docs/50_data_publication/20_choose_repository/10_choose_repository.mdx b/docs/50_data_publication/20_choose_repository/10_choose_repository.mdx
index 63853b7b..20cb640c 100644
--- a/docs/50_data_publication/20_choose_repository/10_choose_repository.mdx
+++ b/docs/50_data_publication/20_choose_repository/10_choose_repository.mdx
@@ -3,9 +3,17 @@ title: "Choose a Repository"
slug: "/choose_repository"
---
+import FloatImage from "@site/src/components/commons/FloatImage.js";
+
import useBaseUrl from "@docusaurus/useBaseUrl";
import DecisionTree from "@site/src/components/repos/DecisionTree";
+import {
+ BulletContainer,
+ BulletBox,
+} from "@site/src/components/commons/BulletBox";
+import { repositoryData, repositoryStyle, RepoDiv } from "./repoCardData";
+
The NFDI4Chem aims to support researchers in collecting, storing, processing, analysing, publishing, and reusing research data. Based on the [NFDI4Chem Community Survey](https://doi.org/10.1002/zaac.202000339), a list of the most [common data types and formats](/docs/pub_data_types_formats) of the community has been compiled to suggests suitable trusted chemistry-friendly repositories.
This decision tree will guide users to quickly select a suitable repository for publishing their research data. Click on the repositories to learn more!
@@ -20,14 +28,24 @@ Based on the [criteria](https://doi.org/10.3897/rio.6.e55852) chosen by Task Are
## Core Repositories
-- [Chemotion Repository](/docs/chemotion_repository) Field-specific sample and reaction-centric repository including analysis data such as NMR, UV-VIS, IR, and MS data.
-- [MassBank EU](/docs/massbank_eu/)\* Field-specific ecosystem of databases and tools for mass spectrometry reference spectra.
-- [nmrXiv](/docs/nmrxiv/) Field-specific repository for NMR data.
-- [RADAR4Chem](/docs/radar4chem/) Generic, multidisciplinary repository that offers a free and reliable home for all chemical research data that do not fulfil the specifications of field-specific repositories.
-- [STRENDA DB](/docs/strenda_db/) Field-specific repository for enzymology data, which incorporates the STRENDA Guidelines for reporting enzymology data.
-- [SUPRABANK](/docs/suprabank/) Field-specific repository for intermolecular interactions data.
-
-\*Resource which does not accept direct submission of MS data in vendor or mzML format, but data in MassBank format, see [RMassBank](https://bioconductor.org/packages/release/bioc/html/RMassBank.html).
+
+ {repositoryData.map((repo, index) => (
+
+
+
+
+ {repo.description}
+
+ ))}
+
+
+
+
+ \*Resource which does not accept direct submission of MS data in vendor or
+ mzML format, but data in MassBank format, see
+ [RMassBank](https://bioconductor.org/packages/release/bioc/html/RMassBank.html).
+
+
## Associated repositories
diff --git a/docs/50_data_publication/20_choose_repository/repoCardData.js b/docs/50_data_publication/20_choose_repository/repoCardData.js
new file mode 100644
index 00000000..53a8be1a
--- /dev/null
+++ b/docs/50_data_publication/20_choose_repository/repoCardData.js
@@ -0,0 +1,80 @@
+import Translate from "@docusaurus/Translate";
+
+export const repositoryData = [
+ {
+ name: "Chemotion Repository",
+ url: "/img/data_pub/repos/ChemotionRepo_Logo.svg",
+ alt: "Chemotion Repository Logo",
+ description:
+
+ Field-specific sample and reaction-centric repository including analysis data such as NMR, UV-VIS, IR, and MS data.
+
+ },
+ {
+ name: "MassBank",
+ url: "/img/data_pub/repos/Massbank_logo.svg",
+ alt: "Massbank Logo",
+ description:
+
+ Field-specific ecosystem of databases and tools for mass spectrometry reference spectra.*
+
+ },
+ {
+ name: "nmrXiv",
+ url: "/img/data_pub/repos/nmrXiv.svg",
+ alt: "nmrXiv Logo",
+ description:
+
+ Field-specific repository for NMR data.
+
+ },
+ {
+ name: "RADAR4Chem",
+ url: "/img/data_pub/repos/radar4chem_Logo.svg",
+ alt: "RADAR4Chem Logo",
+ description:
+
+ Generic, multidisciplinary repository that offers a free and reliable home for all chemical research data that do not fulfil the specifications of field-specific repositories.
+
+ },
+ {
+ name: "STRENDA",
+ url: "/img/data_pub/repos/Logo_Beilstein_STRENDA_sRGB.png",
+ alt: "Strenda DB Logo",
+ description:
+
+ Field-specific repository for enzymology data, which incorporates the STRENDA Guidelines for reporting enzymology data.
+
+ },
+ {
+ name: "Suprabank",
+ url: "/img/data_pub/repos/Suprabank_logo.svg",
+ alt: "Suprabank Logo",
+ description:
+
+ Field-specific repository for intermolecular interactions data.
+
+ },
+];
+
+export const repositoryStyle = {
+ "--ifm-button-size-multiplier": "1",
+ flex: "250px",
+ fontWeight: "unset",
+ display: "flex",
+ flexDirection: "column",
+ alignItems: "center",
+ justifyContent: "space-evenly",
+};
+
+const imgStyle = { display: "flex", flex: "50%", width: "100%", padding: "0.5rem 0", alignItems: "end", justifyContent: "center" }
+
+const descStyle = {
+ display: "flex", flexGrow: 1, flex: "50%", width: "100%", padding: "0.5rem", alignItems: "start", justifyContent: "center"
+}
+
+export function RepoDiv(props) {
+ return (
+
{props.children}
+ )
+}
diff --git a/src/components/commons/BulletBox.js b/src/components/commons/BulletBox.js
index 196a9128..247ccb11 100644
--- a/src/components/commons/BulletBox.js
+++ b/src/components/commons/BulletBox.js
@@ -5,13 +5,20 @@ function BulletContainer({ children }) {
return