fix: redesing and add features

This commit is contained in:
2026-02-07 12:06:35 -06:00
parent 4f103c25b5
commit d55aac6605
40 changed files with 1486 additions and 403 deletions

View File

@@ -0,0 +1,19 @@
<script setup>
import { defineProps } from 'vue'
const props = defineProps({
pokemonData: Object,
pokemonImage: String,
});
</script>
<template>
<div class="w-full h-full flex items-center justify-center p-2 relative z-10">
<img
:src="pokemonImage"
:alt="pokemonData.names[1].name"
class="max-w-full max-h-full object-contain filter drop-shadow-[0_0_10px_rgba(255,255,255,0.2)]"
>
</div>
</template>