From bfbcafda76db8f61c571b55a1e3cdc095c03d188 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus Date: Tue, 17 Sep 2024 09:01:56 +0200 Subject: [PATCH 1/3] Unify capitalization --- src/components/Home/Banner.astro | 6 +++--- src/components/Home/RDMGraphNavigation.astro | 8 ++++---- src/components/Home/ResearchGraphNavigation.astro | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/Home/Banner.astro b/src/components/Home/Banner.astro index c4dfa2b..4de0d60 100644 --- a/src/components/Home/Banner.astro +++ b/src/components/Home/Banner.astro @@ -10,9 +10,9 @@ interface Data { } const data: Data[] = [ - { id: 1, cx: 1975, cy: 200, r: 50, href: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', text: 'open source your research', angle: 320 }, - { id: 2, cx: 1175.5, cy: 1168, r: 50, href: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', text: 'connect your \n research data \n to the world', angle: 200 }, - { id: 3, cx: 2967.5, cy: 532, r: 50, href: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', text: 'bring your research \n data to life', angle: 120 }, + { id: 1, cx: 1975, cy: 200, r: 50, href: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', text: 'Open-source your research', angle: 320 }, + { id: 2, cx: 1175.5, cy: 1168, r: 50, href: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', text: 'Connect your \n research data \n to the world', angle: 200 }, + { id: 3, cx: 2967.5, cy: 532, r: 50, href: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', text: 'Bring your research \n data to life', angle: 120 }, ]; // Function to calculate positions for text and arcs diff --git a/src/components/Home/RDMGraphNavigation.astro b/src/components/Home/RDMGraphNavigation.astro index efaefcd..7e2380c 100644 --- a/src/components/Home/RDMGraphNavigation.astro +++ b/src/components/Home/RDMGraphNavigation.astro @@ -5,10 +5,10 @@ import { Color } from "../GraphNavigation.astro"; const circles = [ { id: 1, cx: 8, cy: 25, r: 5, href: URLS.INTERNAL_DEV_FDO, text: 'FAIR Digital Object', angle: 20 }, - { id: 2, cx: 30, cy: 40, r: 5, href: '#link4', text: 'validation', angle: 180 }, - { id: 3, cx: 60, cy: 8, r: 5, href: '#link3', text: 'continuous Integration', angle: 80 }, - { id: 4, cx: 90, cy: 40, r: 5, href: '#link2', text: 'versioning', angle: 250 }, - { id: 5, cx: 140, cy: 10, r: 5, href: '#link5', text: 'libraries', angle: 180 }, + { id: 2, cx: 30, cy: 40, r: 5, href: '#link4', text: 'Validation', angle: 180 }, + { id: 3, cx: 60, cy: 8, r: 5, href: '#link3', text: 'Continuous Integration', angle: 80 }, + { id: 4, cx: 90, cy: 40, r: 5, href: '#link2', text: 'Versioning', angle: 250 }, + { id: 5, cx: 140, cy: 10, r: 5, href: '#link5', text: 'Libraries', angle: 180 }, ]; --- diff --git a/src/components/Home/ResearchGraphNavigation.astro b/src/components/Home/ResearchGraphNavigation.astro index 7ef4f07..ae364de 100644 --- a/src/components/Home/ResearchGraphNavigation.astro +++ b/src/components/Home/ResearchGraphNavigation.astro @@ -4,10 +4,10 @@ import GraphNavigation from "../GraphNavigation.astro"; import { Color } from "../GraphNavigation.astro"; 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: '#link3', text: 'quality control', angle: 130 }, - { id: 4, cx: 90, cy: 15, r: 5, href: '#link4', text: 'exchange & publication', angle: 10 }, + { 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: '#link3', text: 'Quality Control', angle: 130 }, + { id: 4, cx: 90, cy: 15, r: 5, href: '#link4', text: 'Exchange & Publication', angle: 10 }, { id: 5, cx: 140, cy: 25, r: 5, href: URLS.INTERNAL_COM_FAIRNESS, text: 'RDM & FAIRness', angle: 210 }, ]; --- From 9952b457e6f4f08039119f626424496dda7afad8 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus Date: Tue, 17 Sep 2024 09:02:18 +0200 Subject: [PATCH 2/3] small typos and link --- src/components/Home/CommunityCards.astro | 8 ++++---- src/components/Home/DeveloperCards.astro | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Home/CommunityCards.astro b/src/components/Home/CommunityCards.astro index e706f61..2ba9111 100644 --- a/src/components/Home/CommunityCards.astro +++ b/src/components/Home/CommunityCards.astro @@ -14,18 +14,18 @@ import Card from '../Card.astro' diff --git a/src/components/Home/DeveloperCards.astro b/src/components/Home/DeveloperCards.astro index 9b02cb8..6035019 100644 --- a/src/components/Home/DeveloperCards.astro +++ b/src/components/Home/DeveloperCards.astro @@ -25,7 +25,7 @@ import Card from '../Card.astro' From d2400e1b5f4c4856a1468110213b03eb870265a1 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus Date: Tue, 17 Sep 2024 09:02:35 +0200 Subject: [PATCH 3/3] adapt hero --- src/components/Home/HeroText.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Home/HeroText.astro b/src/components/Home/HeroText.astro index 7d378f5..2f2e63d 100644 --- a/src/components/Home/HeroText.astro +++ b/src/components/Home/HeroText.astro @@ -1,5 +1,5 @@ --- -const mainHeroText = "The ARC is a framework for organizing and documenting research data, as well as a container that continuously supports collaboration, data exchange, and adherence to FAIR principles among various researchers. The ARC can be checked for completeness and quality at any time and converted into a citable data publication (DOI) without interrupting the research or documentation process. It is built on widely accepted research data standards such as RO-Crate, ISA, and abstract CWL."; +const mainHeroText = "The ARC is a framework for organizing and documenting research data, as well as a container that continuously supports collaboration, data exchange, and adherence to FAIR principles among various researchers. The ARC can be checked for completeness and quality at any time and converted into a citable data publication without interrupting the research or documentation process. It is built on widely accepted research data standards such as RO-Crate, ISA, and abstract CWL."; ---
@@ -16,7 +16,7 @@ const mainHeroText = "The ARC is a framework for organizing and documenting rese Context
-

+

{mainHeroText}