Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

at eli/github-skip-darwin 34 lines 808 B view raw
1import { Anchor, Image, XStack } from "tamagui"; 2 3const RATIO = 3.39741547176; 4const WIDTH = 200; 5const HEIGHT = 200 / RATIO; 6 7export default function GetApps() { 8 return ( 9 <XStack justifyContent="center"> 10 <Anchor 11 target="_blank" 12 href="https://apps.apple.com/us/app/streamplace/id6535653195" 13 > 14 <Image 15 width={WIDTH} 16 height={HEIGHT} 17 mx="$2" 18 source={require("../assets/images/appstore.svg")} 19 /> 20 </Anchor> 21 <Anchor 22 target="_blank" 23 href="https://play.google.com/store/apps/details?id=tv.aquareum" 24 > 25 <Image 26 width={WIDTH} 27 height={HEIGHT} 28 mx="$2" 29 source={require("../assets/images/playstore.svg")} 30 /> 31 </Anchor> 32 </XStack> 33 ); 34}