diff --git a/src/components/navigation/NavigationBar.js b/src/components/navigation/NavigationBar.js index 3925e573..c477fa79 100644 --- a/src/components/navigation/NavigationBar.js +++ b/src/components/navigation/NavigationBar.js @@ -1,6 +1,6 @@ -import NavigationDropdown from "./NavigationDropdown"; import { useRouter } from "next/router"; import { NAVIGATION } from "../../constants/navigation"; +import NavigationDropdown from "./NavigationDropdown"; import NavigationLink from "./NavigationLink"; // Only renders for breakpoints >= MD @@ -14,7 +14,7 @@ export default function NavigationBar() { } return ( diff --git a/src/constants/navigation.js b/src/constants/navigation.js index 9bc981ff..c1525f7c 100644 --- a/src/constants/navigation.js +++ b/src/constants/navigation.js @@ -53,10 +53,6 @@ export const NAVIGATION = [ key: "follow-header", children: [ ...SOCIAL, - { - label: "Newsletter", - href: "https://citationneeded.news/", - }, { label: "RSS", path: "/feed.xml", @@ -75,4 +71,12 @@ export const NAVIGATION = [ label: "Contribute", path: "/contribute", }, + { + label: "Newsletter", + href: "https://citationneeded.news/", + }, + { + label: "Store", + href: "https://store.mollywhite.net/", + }, ];