From 43d8d723fbfe1f4d7e8fd000935827a9e37f5434 Mon Sep 17 00:00:00 2001 From: ardier16 Date: Thu, 20 Jun 2024 00:11:17 +0300 Subject: [PATCH] Update app store links --- src/common/AppStoreLinks.tsx | 9 +++++++-- src/common/MobileMenu.tsx | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/common/AppStoreLinks.tsx b/src/common/AppStoreLinks.tsx index 8406961..16f387f 100644 --- a/src/common/AppStoreLinks.tsx +++ b/src/common/AppStoreLinks.tsx @@ -7,24 +7,29 @@ export default function AppStoreLinks({ className }: { className?: string }) { // TODO: Update App Store link href: 'https://www.apple.com/app-store/', img: '/images/app-store.svg', + isDisabled: true, }, { label: 'Google Play', // TODO: Update Google Play link href: 'https://play.google.com/store', img: '/images/google-play.svg', + isDisabled: true, }, ] return (
- {links.map(({ label, href, img }, index) => ( + {links.map(({ label, href, img, isDisabled }, index) => ( {label} diff --git a/src/common/MobileMenu.tsx b/src/common/MobileMenu.tsx index b50d96c..42fc777 100644 --- a/src/common/MobileMenu.tsx +++ b/src/common/MobileMenu.tsx @@ -14,7 +14,7 @@ export default function MobileMenu({ isOpen, onClose }: Props) { <>
@@ -23,7 +23,7 @@ export default function MobileMenu({ isOpen, onClose }: Props) {