From e5d99ac866ddea088869d075b3f18ba2dd53965d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=C3=BChlhaus?= Date: Sun, 22 Sep 2024 17:35:45 +0200 Subject: [PATCH] Add links to Publication & Exchange --- src/components/Home/ResearchGraphNavigation.astro | 2 +- src/components/Navbar.astro | 2 +- src/statics.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Home/ResearchGraphNavigation.astro b/src/components/Home/ResearchGraphNavigation.astro index ced210f..913927a 100644 --- a/src/components/Home/ResearchGraphNavigation.astro +++ b/src/components/Home/ResearchGraphNavigation.astro @@ -7,7 +7,7 @@ const circles = [ { id: 1, cx: 8, cy: 10, r: 5, href: URLS.INTERNAL_COM_DOCUMENTATION, text: 'Documentation Principle', angle: 80 }, { id: 2, cx: 30, cy: 40, r: 5, href: URLS.INTERNAL_COM_ORGANIZATION, text: 'Organization Principle', angle: 200 }, { id: 3, cx: 60, cy: 35, r: 5, href: '#', text: 'Quality Control', angle: 130 }, - { id: 4, cx: 90, cy: 15, r: 5, href: '#', text: 'Exchange & Publication', angle: 10 }, + { id: 4, cx: 90, cy: 15, r: 5, href: URLS.INTERNAL_COM_PUBLICATION, text: 'Publication & Exchange', angle: 10 }, { id: 5, cx: 140, cy: 25, r: 5, href: URLS.INTERNAL_COM_FAIRNESS, text: 'RDM & FAIRness', angle: 210 }, ]; --- diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 91710d9..5a63fd3 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -16,7 +16,7 @@ const links: Link[] = [ {href: URLS.INTERNAL_COM_DOCUMENTATION, text: "Documentation Principle"}, {href: URLS.INTERNAL_COM_ORGANIZATION, text: "Organization Principle"}, {href: "#", text: "quality control 🚧"}, - {href: "#", text: "exchange & publication 🚧"}, + {href: URLS.INTERNAL_COM_PUBLICATION, text: "Publication & Exchange"}, {href: URLS.INTERNAL_COM_FAIRNESS, text: "RDM & FAIRness"}, ]}, ]}, diff --git a/src/statics.ts b/src/statics.ts index 176a649..2f33265 100644 --- a/src/statics.ts +++ b/src/statics.ts @@ -14,6 +14,7 @@ export enum URLS { INTERNAL_COM_RESOURCES = BASE_PATH + "details/resources", INTERNAL_COM_DOCUMENTATION = BASE_PATH + "details/documentation-principle", INTERNAL_COM_ORGANIZATION = BASE_PATH + "details/organization-principle", + INTERNAL_COM_PUBLICATION = BASE_PATH + "details/exchange-and-publication", INTERNAL_COM_FAIRNESS = BASE_PATH + "details/fairness-and-rdm", INTERNAL_DEV_DATA_MODEL = BASE_PATH + "details/arc-data-model",