diff --git a/src/data/components/organisms/core/Header/navigationItems.js b/src/data/components/organisms/core/Header/navigationItems.js new file mode 100644 index 00000000..19615b7d --- /dev/null +++ b/src/data/components/organisms/core/Header/navigationItems.js @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2018-present Arctic Ice Studio + * Copyright (C) 2018-present Sven Greb + * + * Project: Nord Docs + * Repository: https://github.com/arcticicestudio/nord-docs + * License: MIT + */ + +/** + * @author Arctic Ice Studio + * @author Sven Greb + * @since 0.3.0 + */ + +import { ROUTE_BLOG, ROUTE_COMMUNITY, ROUTE_DOCS, ROUTE_PORTS } from "config/routes/mappings"; + +/** + * The mapping of navigation link item names to their target URL. + * + * @since 0.3.0 + */ +const navigationItems = [ + { title: "Ports", url: ROUTE_PORTS }, + { title: "Docs", url: ROUTE_DOCS }, + { title: "Blog", url: ROUTE_BLOG }, + { title: "Community", ROUTE_COMMUNITY } +]; + +export default navigationItems;