feat: add Tilt component for enhanced product display and integrate with Home component

fix: correct spelling of 'Stock' in Card component
fix: update package.json and package-lock.json to include vanilla-tilt dependency
This commit is contained in:
Dan Dobos
2025-10-21 09:29:07 +02:00
parent d745d9864a
commit 013f01bc90
5 changed files with 49 additions and 16 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ const Card = ({ product }) => {
<span>{product.price}</span>
</p>
<p className='stock'>
<span>Stoc:</span>
<span>Stock:</span>
<span>{product.stock}</span>
</p>
</div>