diff --git a/pgml-dashboard/src/components/navigation/navbar/marketing/template.html b/pgml-dashboard/src/components/navigation/navbar/marketing/template.html index 14cc2f5b0..58f7b0861 100644 --- a/pgml-dashboard/src/components/navigation/navbar/marketing/template.html +++ b/pgml-dashboard/src/components/navigation/navbar/marketing/template.html @@ -10,6 +10,27 @@ StaticNavLink::new("Fraud Detection".to_string(), "/test2".to_string()).icon("e911_emergency").disabled(true), StaticNavLink::new("Forecasting".to_string(), "/test2".to_string()).icon("avg_pace").disabled(true), ]; + + let company_links = vec![ + StaticNavLink::new("About".to_string(), "/about".to_string()).icon("smart_toy"), + StaticNavLink::new("Contact".to_string(), "/contact".to_string()).icon("alternate_email") + ]; + + struct mobile_navs { + collapse: String, + links: Vec + } + + let mobile_nav_items = vec![ + mobile_navs { + collapse: "solutions-collapse".to_string(), + links: solutions_links.clone() + }, + mobile_navs { + collapse: "company-collapse".to_string(), + links: company_links.clone() + } + ]; %>
@@ -35,7 +56,7 @@