From ff4561f35a9aa64db4c3e55054f299ca288dab64 Mon Sep 17 00:00:00 2001 From: Dan <39170265+chillenberger@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:56:21 -0700 Subject: [PATCH] disable style for primary marketing btn, form error input style, update navbar with contact link --- .../navigation/navbar/marketing/template.html | 44 +++++++++++++++---- .../static/css/scss/components/_buttons.scss | 5 +++ .../static/css/scss/components/_forms.scss | 4 ++ 3 files changed, 45 insertions(+), 8 deletions(-) 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 @@