diff --git a/data/benefits.yml b/data/benefits.yml index db277404..e0bce604 100644 --- a/data/benefits.yml +++ b/data/benefits.yml @@ -180,6 +180,9 @@ HowTo: titlePicture: /images/benefits/join-circle.svg description: Become a Supporting or Sustaining [member](/membership) to receive even more benefits. picture: /images/benefits/join-arrow.svg + action: + title: Data provider’s guide + url: /documentations join: title: Join CORE as a data provider and contribute to the creation of a mutually beneficial ecosystem. diff --git a/data/membership.yml b/data/membership.yml index c94e0f9e..5e22119d 100644 --- a/data/membership.yml +++ b/data/membership.yml @@ -636,6 +636,6 @@ navItems: documentationSwitcher: - title: CORE Data Provider’s Guide - description: In this documentation you can find all detailed information about becoming CORE data provider. + description: These guidelines aim to assist institutions and repository managers in configuring their repositories in way that enables CORE to correctly index them. - title: Membership Documentation - description: In this documentation you can find an instruction about how to interact with all features of CORE Memberships. + description: This documentation explains how to use all features and benefits of CORE Membership. diff --git a/design-v2/benefits/index.jsx b/design-v2/benefits/index.jsx index 5925ee3a..7a346b4a 100644 --- a/design-v2/benefits/index.jsx +++ b/design-v2/benefits/index.jsx @@ -159,6 +159,11 @@ const BenefitsPageTemplate = () => { ))} +
+ +
diff --git a/design-v2/benefits/styles.module.scss b/design-v2/benefits/styles.module.scss index fb395fad..e5773012 100644 --- a/design-v2/benefits/styles.module.scss +++ b/design-v2/benefits/styles.module.scss @@ -227,6 +227,12 @@ $spacer: 1.5rem; } } +.docs-btn { + display: flex; + justify-content: flex-end; + padding: 16px 16px 0 0; +} + .join-core { display: flex; justify-content: space-between; diff --git a/templates/documentations/index.jsx b/templates/documentations/index.jsx index 3c90d4a0..04dd0814 100644 --- a/templates/documentations/index.jsx +++ b/templates/documentations/index.jsx @@ -5,7 +5,6 @@ import { } from '@oacore/design/lib/modules' import { useRouter } from 'next/router' -import Markdown from '../../components/markdown' import { Layout } from '../../design-v2/components' import textData from '../../data/membership.yml' import styles from './styles.module.scss' @@ -15,7 +14,7 @@ function normalizeHref(str) { return test.replace('_', '-') } -const DocumentationPageTemplate = ({ headerAbout, docs }) => { +const DocumentationPageTemplate = ({ docs }) => { const [highlight, setHighlight] = useState() const [navActiveIndex, setNavActiveIndex] = useState(null) const route = useRouter() @@ -52,8 +51,6 @@ const DocumentationPageTemplate = ({ headerAbout, docs }) => { return ( {headerAbout.header.caption}} docs={docs?.items} highlight={highlight} setHighlight={setHighlight}