Skip to content

Commit 0e17d1d

Browse files
committed
feat: add play store url
1 parent ae98727 commit 0e17d1d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

apps/docs/components/play-store-button.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import Image from 'next/image';
22

33
export function PlayStoreButton() {
4-
// TODO(zach): Add link to play store
54
return (
6-
<a href="#" className="relative aspect-[16/5] h-10 rounded-sm sm:h-12">
5+
<a
6+
href="https://play.google.com/store/apps/details?id=com.reactnativereusables.android"
7+
target="_blank"
8+
className="relative aspect-[16/5] h-10 rounded-sm sm:h-12">
79
<Image alt="Get it on Google Play" src={'/google-play-badge.png'} fill />
810
</a>
911
);

0 commit comments

Comments
 (0)