import { StyleSheet, Text, View, Pressable, Image} from 'react-native' import React from 'react' import { useNavigation } from '@react-navigation/native'; const HomeCardItem = () => { const navigation = useNavigation(); return ( Pokémon Donuts(Coming soon) The limited-edition Pokémon Donuts is coming soon! navigation.navigate('menu')}> Mothers Day Box for your mama Lets show our appreciation for our moms by treating them with the special Mothers Day Box! navigation.navigate('menu')} style={{marginTop: 10, padding: 10, backgroundColor: '#DA7297', width: 100, borderRadius: 5, alignItems: 'center'}}> Order Now navigation.navigate('menu')}> Colorful Smoothies are here The colors are not due to artificial colorings, but rather from natural fruits and vegetables navigation.navigate('menu')} style={{marginTop: 10, padding: 10, backgroundColor: '#DA7297', width: 100, borderRadius: 5, alignItems: 'center'}}> Order Now ) } export default HomeCardItem const styles = StyleSheet.create({})