diff --git a/src/components/Home/CommunityCards.astro b/src/components/Home/CommunityCards.astro index d2c875e..78fc69f 100644 --- a/src/components/Home/CommunityCards.astro +++ b/src/components/Home/CommunityCards.astro @@ -6,7 +6,7 @@ import Card from '../Card.astro'
-

+

for the research community

diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index bd326c1..7e52619 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -1,15 +1,41 @@ --- import ThemeController from "./ThemeController.astro" +import RecMenu from "./RecMenu.astro" +import { type Link } from "./RecMenu.astro" import { URLS } from "../statics" -const links = [ +const links: Link[] = [ {href: URLS.Internal_Home, text: "Home"}, - {href: "/arc-website/knowledgebase", text: "Knowledgebase"}, + {text: "Research Community", children: [ + {href: "/", text: "Minimal Organisation Principal 🚧"}, + {href: "/", text: "Tools and Services 🚧"}, + {href: "/", text: "Support 🚧"}, + {text: "More", children: [ + {href: "/", text: "documentation principle 🚧"}, + {href: "/", text: "organization principle 🚧"}, + {href: "/", text: "quality control 🚧"}, + {href: "/", text: "exchange & publication 🚧"}, + {href: "/", text: "RDM & FAIRness 🚧"}, + ]}, + ]}, + {text: "RDM Community", children: [ + {href: "/", text: "ARC data model 🚧"}, + {href: "/", text: "ARC representation 🚧"}, + {href: "/", text: "ARC (meta)data framework 🚧"}, + {text: "More", children: [ + {href: "/", text: "FAIR Digital Object 🚧"}, + {href: "/", text: "validation 🚧"}, + {href: "/", text: "continuous Integration 🚧"}, + {href: "/", text: "versioning 🚧"}, + {href: "/", text: "libraries 🚧"}, + ]}, + ]}, {href: URLS.Internal_Tools, text: "Tools"}, {href: "/arc-website/Partners", text: "Partners"}, ] --- +