From fb5e41cc51b828119edb5ca55780ca1b1bf85630 Mon Sep 17 00:00:00 2001 From: Youngteac Hong Date: Thu, 26 Dec 2024 10:44:44 +0900 Subject: [PATCH] Move iOS and Android SDK to development phase (#181) --- components/Layout/Footer.tsx | 24 +++++++------ components/Layout/MobileGnbDropdown.tsx | 44 ++++++++++++----------- docs/android-sdk.mdx | 1 + docs/getting-started.mdx | 2 ++ docs/getting-started/with-android-sdk.mdx | 1 + docs/getting-started/with-ios-sdk.mdx | 1 + docs/ios-sdk.mdx | 1 + 7 files changed, 44 insertions(+), 30 deletions(-) diff --git a/components/Layout/Footer.tsx b/components/Layout/Footer.tsx index 7d6c131..937b0d6 100644 --- a/components/Layout/Footer.tsx +++ b/components/Layout/Footer.tsx @@ -78,16 +78,20 @@ export function Footer({ shortFooter }: { shortFooter?: boolean }): ReactElement JS SDK -
  • - - iOS SDK - -
  • -
  • - - Android SDK - -
  • + {process.env.NODE_ENV === 'development' && ( + <> +
  • + + iOS SDK + +
  • +
  • + + Android SDK + +
  • + + )}
    diff --git a/components/Layout/MobileGnbDropdown.tsx b/components/Layout/MobileGnbDropdown.tsx index d08fb56..a2bad92 100644 --- a/components/Layout/MobileGnbDropdown.tsx +++ b/components/Layout/MobileGnbDropdown.tsx @@ -87,26 +87,30 @@ export function MobileGnbDropdown({ isLoggedIn }: { isLoggedIn: boolean }) { JS SDK -
  • - - iOS SDK - -
  • -
  • - - Android SDK - -
  • + {process.env.NODE_ENV === 'development' && ( + <> +
  • + + iOS SDK + +
  • +
  • + + Android SDK + +
  • + + )}