Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
adae08e
refactor: reorganize component structure
jliermann Dec 17, 2025
043081b
refactor: add module css
jliermann Dec 17, 2025
def78a3
refactor: integrate CSS modules for Lbe component and clean up unused…
jliermann Dec 17, 2025
cdcffd7
refactor: update CSS class names to use modules in FilterSection comp…
jliermann Dec 17, 2025
eaa2497
refactor: update CSS class names to use modules in LbeElements and lb…
jliermann Dec 17, 2025
159b5ce
refactor: remove unused imports in LbeBody component
jliermann Dec 17, 2025
fbacb5b
refactor: update LbeBody component to use CSS modules and clean up cl…
jliermann Dec 17, 2025
2d344ea
refactor: use CSS modules in Authors.js
jliermann Dec 17, 2025
7fbc37b
refactor: update class names to use CSS modules
jliermann Dec 17, 2025
3ae27d0
refactor: clean up unused classes
jliermann Dec 17, 2025
b5255c6
Merge remote-tracking branch 'upstream/main'
jliermann Dec 18, 2025
5bd5260
style: prettierrc formatting
jliermann Dec 18, 2025
3dd8179
style: remove deprecated CSS for announcement bar
jliermann Dec 18, 2025
cc364b8
style: add button styles section and remove unused logo styles
jliermann Dec 18, 2025
f59f0d8
style: prettierrc formatting
jliermann Dec 18, 2025
be2f2b1
style: refactor feature styles into N4CFeatures.module.css and update…
jliermann Dec 18, 2025
569faed
style: prettierrc formatting
jliermann Dec 18, 2025
dcae9ec
style: refactor hero styles into index.module.css and update componen…
jliermann Dec 18, 2025
e04dc2d
style: prettierrc formatting
jliermann Dec 18, 2025
5241d1a
style: format code for consistency and readability in LbeBody.js
jliermann Dec 18, 2025
ce20fa9
style: remove unused CSS variables
jliermann Dec 18, 2025
c7715b4
feat: refactor to use swizzled details component from Docusaurus theme
jliermann Dec 18, 2025
3a78b7a
fix: move component to avoid theme component mismatch
jliermann Dec 18, 2025
0fcacc3
style: remove conditional open states from LbeBlock details components
jliermann Dec 18, 2025
a054d57
Merge branch 'NFDI4Chem:main' into main
jliermann Dec 18, 2025
0e64082
Merge pull request #485 from jliermann/main
jliermann Dec 18, 2025
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
5 changes: 2 additions & 3 deletions docs/50_data_publication/51_lbe/10_datasets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ hide_table_of_contents: true
slug: "/datasets"
---

import Lbe from '@site/src/components/LeadByExample.js';

import Lbe from "@site/src/components/lbe/Lbe.js";

# Lead by Example Datasets

<Lbe />

:::note

*This list will be continuously updated with further publication dataset pairs.*
_This list will be continuously updated with further publication dataset pairs._

:::
33 changes: 20 additions & 13 deletions src/components/IntroButton.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
import React from "react";
import useBaseUrl from '@docusaurus/useBaseUrl';
import useBaseUrl from "@docusaurus/useBaseUrl";

import styles from "./N4CFeatures.module.css";

export default function IntroButton( props ) {
return (
<div className="col intro__col">
<div>
<a href={useBaseUrl(props.url)} className="button button--secondary feature__button--secondary" >
<div><img src={useBaseUrl(props.imgUrl)} width="120px" /></div>
<div>{props.text}</div>
</a>
</div>
</div>
)
export default function IntroButton(props) {
return (
<div className={"col " + styles.introCol}>
<div>
<a
href={useBaseUrl(props.url)}
className={
"button button--secondary " + styles.featureButtonSecondary
}
>
<div>
<img src={useBaseUrl(props.imgUrl)} width="120px" />
</div>
<div>{props.text}</div>
</a>
</div>
</div>
);
}

130 changes: 0 additions & 130 deletions src/components/LeadByExample.js

This file was deleted.

Loading