This is the frontend application for Tiny Explorer, an e-commerce platform for baby products. It is built using Astro, React, and Tailwind CSS.
- Framework: Astro
- UI Library: React
- Styling: Tailwind CSS
- Icons: Lucide React
All commands are run from the root of this project (tiny-explorer-fe).
pnpm installTo start the local development server:
pnpm run devThe site will be available at http://localhost:4321.
To build the project for production:
pnpm run buildThe output will be in the dist/ directory.
To preview the production build locally:
pnpm run preview/
├── public/ # Static assets (images, fonts, etc.)
├── src/
│ ├── assets/ # Imported assets
│ ├── components/ # React and Astro components
│ ├── layouts/ # Page layouts
│ ├── pages/ # File-based routing
│ └── styles/ # Global styles (if any)
└── package.json