diff --git a/src/components/AppStoreLink.tsx b/src/components/AppStoreLink.tsx index a970540..09b5751 100644 --- a/src/components/AppStoreLink.tsx +++ b/src/components/AppStoreLink.tsx @@ -3,26 +3,44 @@ import clsx from 'clsx' export function AppStoreLink({ color = 'black', + type = 'appstore', }: { color?: 'black' | 'white' + type?: 'appstore' | 'googleplay' }) { + const isAppStore = type === 'appstore' + return ( - + {isAppStore ? ( + + ) : ( + + )} ) } diff --git a/src/components/CallToAction.tsx b/src/components/CallToAction.tsx index 9ac7567..fb1803a 100644 --- a/src/components/CallToAction.tsx +++ b/src/components/CallToAction.tsx @@ -22,7 +22,8 @@ export function CallToAction() { first investment.
- Scan the QR code to download the app from the App Store. + Scan the QR code to download the app from Google Play. App Store coming soon.
diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 5e6aadf..b968fd5 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -120,10 +120,15 @@ export function Header() {