diff --git a/gatsby-node.js b/gatsby-node.js
index c0b9b3b74..58a9c5cd0 100644
--- a/gatsby-node.js
+++ b/gatsby-node.js
@@ -119,6 +119,10 @@ exports.sourceNodes = async ({ actions }) => {
path: `${baseUrl}/submenu-products-developer-tools`,
name: "ProductsDevTools"
},
+ {
+ path: `${baseUrl}/submenu-pricing-primary`,
+ name: "PricingPrimary"
+ },
{
path: `${baseUrl}/submenu-community-primary`,
name: "CommunityPrimary"
diff --git a/src/components/2_molecules/navigation/communityFeatured.js b/src/components/2_molecules/navigation/communityFeatured.js
new file mode 100644
index 000000000..55d99fcc0
--- /dev/null
+++ b/src/components/2_molecules/navigation/communityFeatured.js
@@ -0,0 +1,51 @@
+import React from "react";
+
+const styles = {
+ color: '#ffffff'
+};
+
+const CommunityFeaturedNav = () => (
+
+
Featured
+
+
+);
+
+export default CommunityFeaturedNav;
diff --git a/src/components/2_molecules/navigation/communityMenus.js b/src/components/2_molecules/navigation/communityMenus.js
index 6eb92d5bd..d2e965130 100644
--- a/src/components/2_molecules/navigation/communityMenus.js
+++ b/src/components/2_molecules/navigation/communityMenus.js
@@ -1,5 +1,6 @@
import React from "react";
+import CommunityFeatured from "./CommunityFeatured";
import CommunityPrimary from "./communityPrimary";
import CommunityServices from "./communityServices";
@@ -7,13 +8,13 @@ const CommunityMenus = () => (
diff --git a/src/components/2_molecules/navigation/pricingFeatured.js b/src/components/2_molecules/navigation/pricingFeatured.js
new file mode 100644
index 000000000..2b6a52592
--- /dev/null
+++ b/src/components/2_molecules/navigation/pricingFeatured.js
@@ -0,0 +1,43 @@
+import React from "react";
+const styles = {
+ borderWidth: 2,
+ borderColor: '#ededf4'
+};
+
+const PricingFeaturedNav = () => (
+
+);
+
+export default PricingFeaturedNav;
diff --git a/src/components/2_molecules/navigation/pricingMenus.js b/src/components/2_molecules/navigation/pricingMenus.js
new file mode 100644
index 000000000..632ef70f3
--- /dev/null
+++ b/src/components/2_molecules/navigation/pricingMenus.js
@@ -0,0 +1,19 @@
+import React from "react";
+
+import PricingFeatured from "./pricingFeatured";
+import PricingPrimary from "./pricingPrimary";
+
+const PricingMenus = () => (
+
+);
+
+export default PricingMenus;
diff --git a/src/components/2_molecules/navigation/pricingPrimary.js b/src/components/2_molecules/navigation/pricingPrimary.js
new file mode 100644
index 000000000..92e868d21
--- /dev/null
+++ b/src/components/2_molecules/navigation/pricingPrimary.js
@@ -0,0 +1,46 @@
+import React from "react";
+import { StaticQuery, graphql } from "gatsby";
+import Col from "./col";
+
+const PricingPrimary = ({ data }) => {
+ return (
+
+ {data.allPricingPrimary.edges.map((link, i) => {
+ const node = link.node;
+ return (
+
+
+
+ {node.title}
+
+
+
+ );
+ })}
+
+ );
+};
+
+export default props => (
+ }
+ />
+);
diff --git a/src/components/2_molecules/navigation/primaryNav.js b/src/components/2_molecules/navigation/primaryNav.js
index e7e6564a7..8eab89024 100644
--- a/src/components/2_molecules/navigation/primaryNav.js
+++ b/src/components/2_molecules/navigation/primaryNav.js
@@ -123,9 +123,9 @@ class MainSiteNav extends React.Component {
-
-
-
+
+
+
Pricing
@@ -144,13 +144,6 @@ class MainSiteNav extends React.Component {
-
-
-
- Search
-
-
-
+
+
+
+ Beta Program
+
+
+
diff --git a/src/components/3_organisms/header.js b/src/components/3_organisms/header.js
index e6745cb9e..a7f420fef 100644
--- a/src/components/3_organisms/header.js
+++ b/src/components/3_organisms/header.js
@@ -6,6 +6,7 @@ import UtilityMobile from "../2_molecules/navigation/utilityMobile";
import WhyMenus from "../2_molecules/navigation/whyMenus";
import ProductsMenus from "../2_molecules/navigation/productsMenus";
+import PricingMenus from "../2_molecules/navigation/pricingMenus";
import CommunityMenus from "../2_molecules/navigation/communityMenus";
const Header = () => (
@@ -39,6 +40,7 @@ const Header = () => (
+