Skip to content

Commit

Permalink
fix placeholder links
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Sep 17, 2024
1 parent da4900b commit b6a526b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/Home/CommunityCards.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Card from '../Card.astro'
body="Find tools and services that assist you creating and managing your research data using the ARC."
/>
<Card
href="/"
href="#"
title="Resources"
body="Explore tutorials, videos or find a community that can help."
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/DeveloperCards.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Card from '../Card.astro'
body="Understand how the ARC is both a data scaffold and a JSON manifest"
/>
<Card
href="https://astro.build/themes/"
href="#"
title="ARC (meta)data framework"
body="Supercharge your RDM with an extensive framework and libraries."
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/RDMGraphNavigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ 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: URLS.INTERNAL_DEV_VALIDATION, text: 'Validation', angle: 180 },
{ id: 3, cx: 60, cy: 8, r: 5, href: URLS.INTERNAL_DEV_ARC_DATA_HUB, text: 'ARC Data Hub', angle: 80 },
{ id: 4, cx: 90, cy: 40, r: 5, href: '#link2', text: 'Versioning', angle: 250 },
{ id: 4, cx: 90, cy: 40, r: 5, href: '#', text: 'Versioning', angle: 250 },
{ id: 5, cx: 140, cy: 10, r: 5, href: URLS.INTERNAL_DEV_TOOLSTACK, text: 'Developer Toolstack', angle: 180 },
];
---
Expand Down
4 changes: 2 additions & 2 deletions src/components/Home/ResearchGraphNavigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ 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: 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: 5, cx: 140, cy: 25, r: 5, href: URLS.INTERNAL_COM_FAIRNESS, text: 'RDM & FAIRness', angle: 210 },
];
---
Expand Down
12 changes: 6 additions & 6 deletions src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ const links: Link[] = [
{href: URLS.INTERNAL_HOME, text: "Home"},
{text: "Research Community", children: [
{href: URLS.INTERNAL_COM_DATA_MANAGEMENT, text: "Data Management Principle 🚧"},
{href: "/", text: "Tools and Services 🚧"},
{href: "/", text: "Resources 🚧"},
{href: "#", text: "Tools and Services 🚧"},
{href: "#", text: "Resources 🚧"},
{text: "More", children: [
{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: "#", text: "quality control 🚧"},
{href: "#", text: "exchange & publication 🚧"},
{href: URLS.INTERNAL_COM_FAIRNESS, text: "RDM & FAIRness"},
]},
]},
{text: "RDM Community", children: [
{href: URLS.INTERNAL_DEV_DATA_MODEL, text: "ARC Data Model"},
{href: URLS.INTERNAL_DEV_REPRESENTATION, text: "ARC Representation"},
{href: "/", text: "ARC (meta)data framework 🚧"},
{href: "#", text: "ARC (meta)data framework 🚧"},
{text: "More", children: [
{href: URLS.INTERNAL_DEV_FDO, text: "FAIR Digital Object"},
{href: URLS.INTERNAL_DEV_VALIDATION, text: "Validation"},
{href: URLS.INTERNAL_DEV_ARC_DATA_HUB, text: "ARC Data Hub"},
{href: "/", text: "versioning 🚧"},
{href: "#", text: "versioning 🚧"},
{href: URLS.INTERNAL_DEV_TOOLSTACK, text: "Developer Toolstack"},
]},
]},
Expand Down

0 comments on commit b6a526b

Please sign in to comment.