diff --git a/src/Components/Navigation/Navbar.js b/src/Components/Navigation/Navbar.js index 7314dd9..e723234 100644 --- a/src/Components/Navigation/Navbar.js +++ b/src/Components/Navigation/Navbar.js @@ -35,13 +35,13 @@ const NavbarElement = (props) => { { text: "Cases", link: "cases" }, { text: "Documents", link: "documents" }, { text: "How-to", link: "how-to" }, - { text: "Blog", link: "dashboard" }, + { text: "Blog", link: "https://www.novodraft.ai/blog/" }, ] : [ { text: "Login", link: "login" }, { text: "Features", link: "features" }, { text: "Signup", link: "signup" }, - { text: "Blog", link: "login" }, + { text: "Blog", link: "https://www.novodraft.ai/blog/" }, ]; function navToggle() { @@ -55,6 +55,10 @@ const NavbarElement = (props) => { } */ const _link = link.toLowerCase(); + if (_link === "https://www.novodraft.ai/blog/") { + window.open(_link, "_blank"); + return; + } if (_link === undefined) { _link = ""; }