Product display
This is a landing block for a restaurant website. It features a title, a short descriptive text, a 'Book a table' button, and a link to the restaurant's menu.
<Flexbox p="lg" flexDirection="column" alignItems="center" justifyContent="center"> <Text fontWeight="Bold" fontSize="3xl" textAlign="center" mb="md"> {data.product.title} </Text> <Box width={250}> <LinearGradient colors={['#FF6A00', '#EE0979']} start={{ x: 0, y: 0 }} end={{ x: 1, y: 1 }} style.borderRadius={500} style.padding={10} > <Image src={data.product.images[0].src} width="100%" aspectRatio={1} resizeMode="cover" borderRadius={500} boxShadow="md" /> </LinearGradient> </Box> <Text fontSize="xl" textAlign="center" color="gray-900" mt="md" mx="lg" numberOfLines={2} > {data.product.description} </Text> <Text color="primary" fontWeight="Bold" fontSize="3xl" mt="2xs"> <Money money={data.product.variants[0].price} /> </Text> <Button icon="material-community-icons:cart-plus" variant="outlined" size="lg" action={data.product.actions.addToCart} mt="2xs" > Add to Cart </Button> </Flexbox>
{ "product": { "id": "iphone-14-pro", "title": "Apple iPhone 14 Pro", "variants": [ { "price": { "amount": 10, "currencyCode": "GBP" } } ], "description": "Experience the next level of performance with the Apple iPhone 14 Pro. Featuring an advanced camera system, powerful A16 chip, and an immersive display.", "images": [ { "src": "https://images.unsplash.com/photo-1510557880182-3d4d3cba35a5?w=400" } ] } }
Loading...