From 21f559b255a4e8bd11236b59b4c7f4b882da82ee Mon Sep 17 00:00:00 2001 From: Sam Rizvi Date: Tue, 30 Jan 2024 04:52:13 -0800 Subject: [PATCH] fix: mobile menu #697 - hid the main nav on -
+
{ @@ -32,17 +33,20 @@ const FooterLink: React.FC = ({ label, ariaLabel, preText, + mobileOnly, }) => ( <> -
-

- {preText && {preText}} +

+

+ {preText && {preText}} {label} @@ -57,6 +61,12 @@ const links: FooterLinkData[] = [ ariaLabel: 'Navigate to BRIL.LA website', preText: 'Designed in California by ', }, + { + href: 'https://andvoila.gg/pricing', + label: 'Pricing', + ariaLabel: 'Navigate to Pricing page in a new window.', + mobileOnly: true, + }, { href: 'https://andvoila.gg/privacy', label: 'Privacy Policy', @@ -77,14 +87,14 @@ const links: FooterLinkData[] = [ export function SiteFooter({ className }: React.HTMLAttributes) { return (