How to like individual image specific to each user. Through expo/react native/firebase

My main issue with my current react native app is that when a user searches for a nft using a web3 api im using, i render a like button next to every image of the nft. I added some logic for making the like button red but when i like a NFT all the other like buttons for all the other NFT’s get liked. How can i fix this to where only the specific like button that gets pressed shows that it is pressed.

code:

export const Profile = ({setLoggedIn}) => {
  const [profileData, setProfileData] = useState([]);
  const [apiQ,setApiQ] = useState("")
  const [nfttei,setNftTei] = useState("")
  const [comments,setComments] = useState([])
  const[commentText,setCommentText] = useState("")

 async  function getData () {
  const options = {method: 'GET', headers: {accept: 'application/json', 'X-API-Key': 'WYON0dXwg4zG3GSsaPb79ofaPTLAbDUpmt01OuTlZihmzoH1F059it3bdsXSou0t'}};
const data = await fetch(`https://deep-index.moralis.io/api/v2/nft/search?chain=eth&format=decimal&q=${apiQ}&filter=name&limit=10`, options)
const ddata = await data.json()
setProfileData(ddata.result)
  }

  async function handleNftIn () {
   setApiQ(nfttei)
   setNftTei("")
  }
 
  useEffect(() => {
    getData();
    
  }, [apiQ]);
  function liked (id) {
    setPressed(true)
  }
  const [pressed,setPressed] = useState(false)
  return (
    <View style={{padding: 20}}>
    <Text style={{fontSize: 40, fontWeight: "700"}}>NFTS</Text>
    <View style={{marginBottom: 20}}>
    <Text style={{fontSize: 25, fontWeight: "650", marginBottom: 10}}>What kind of NFT?</Text>
   <View style={{flexDirection: "row", justifyContent: "space-between", alignItems: "center"}}>
   <TextInput
   placeholder='type nft keyword'
      style={{
        backgroundColor: "#D1D1D1",
        borderRadius: 20,
        padding: 10,
        fontSize: 16,
        width: "60%"
      }}
      onChangeText={(val) => setNftTei(val)}
      value={nfttei}
    />
<AntDesign name="rightcircle" size={30} color="#3A84EC"  onPress={handleNftIn}/>
   </View>
   </View>
    <ScrollView>
    {profileData ? <>
      {profileData.map((el, key,id) => 
        <View style={{
          backgroundColor: "#fff",
          padding: 10,
          borderRadius: 20,
          marginBottom: 20
        }} key={key}>
          <View style={{position: "relative"}}>
            <View style={{position: "absolute", zIndex: 10, right: 0, backgroundColor: "#fff", padding: 8,borderRadius: 30, marginRight: 20, marginTop: 10}}>
            <AntDesign onPress={(id) => liked(id)} name="heart" size={24} color={pressed ? "#FF717B": "grey"} />
            </View>
          {JSON.parse(el.metadata).image.includes("https") ? <>
              <Image source={{
            uri: `${JSON.parse(el.metadata).image}`
          }} style={{width: "1005", height: 200, borderRadius: 30, width: "100%"}}/> 
          </>: null}
          </View>
          <View style={{marginTop: 20}}>
            <View style={{flexDirection: "row", alignItems:"center"}}>
              <Text style={{marginRight:10, color: "grey"}}>ID</Text>
              <View style={{width: 10,height:10,backgroundColor:"#000", borderRadius:50}}></View>
              <Text style={{marginLeft: 10}}>{el.token_id}</Text>
            </View>
            <Text style={{fontSize: 20, fontWeight: "700", marginBottom: 10}} key={key}>{JSON.parse(el.metadata).name}</Text>
          <Text>{JSON.parse(el.metadata).description}</Text>
          <View style={{backgroundColor: "#000", borderRadius: 10,padding:7,justifyContent: "center", alignItems: "center"}}>
            {el.token_uri.includes("https") ? <>
            <A style={{color:"white", fontSize: 19}} href={el.token_uri}><Text>learn More</Text></A> 
            </> : <Text>Learn More</Text>} 
             </View>
          </View>
        </View>
      )} 
      
    </>: <>
    <Text style={{
      fontWeight:"700",
      color:"#000",
      fontSize:20,
      marginBottom:20
    }}>Try searching something! Anything!</Text>
    <Image source={{
    uri:"https://mir-s3-cdn-cf.behance.net/project_modules/max_1200/50e513115094373.6047d1f4cf3f1.jpg"
    }} style={{
      width:"100%",
      borderRadius:20,
      height:500
    }}/>
    </>}
      </ScrollView>
      </View>
  )
}

image:

what its giving me: