The EduPets store gives children a place to browse cosmetic rewards earned through play. Accessible directly from Pingüi’s game menu, the store page is designed to grow alongside the platform — the layout and card components are fully in place, ready for items, pricing, and a purchase system to be wired up as the project matures.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Edupets-Studio/Edu-pets/llms.txt
Use this file to discover all available pages before exploring further.
Accessing the store
The store is reachable via the Tienda button in the game menu panel on/mascota. That button navigates to the /tienda route, which renders tienda.html. No authentication or currency check is required to view the store.
Virtual Pet
Learn about Pingüi’s stats, tasks, and the pet dashboard.
Math Exercises
The four exercise modes that reward pet stats on completion.
Current items
The store currently displays two product cards, each inside its own<section class="cosmeticos"> block:
Item (<h2>) | Price | Image source |
|---|---|---|
| Producto destacado | $9.99 | cp.png |
| Producto destacado | $800.99 | Chamber.jpeg |
The store currently has no backend purchase system or in-game currency. The two product cards are UI scaffolding intended for future expansion. Clicking a product card has no effect.
Store structure
The store page is built from standard semantic HTML insidetienda.html. Each product lives in its own <section class="cosmeticos"> block. The full layout for both items looks like this:
<article class="product-card"> inside a <section class="cosmeticos">. The card contains:
- A
product-imagethumbnail - A
product-infoblock with the item name (<h2>) and price (<p class="product-price">)
<article> elements to an existing <section class="cosmeticos">, or by introducing new <section> blocks for different item categories.
Navigation
The store header contains a “Volver” (<a href="/mascota">) link that returns the player to the pet dashboard. There is no JavaScript involved in store navigation — all routing is handled by plain anchor links.