# Jagoran Muryar Magunguna da Magani (Hausa Health Audio Guide)
## π€ Developer Profile
- **Name:** Aliyu Muhammad Mande
- **Email:** aliyumuhammadmande20@gmail.com
- **Cohort:** Cohort 3
- **Learning Track:** Software Development
- **Project Theme:** Health / Community Impact
---
# React + Vite + shadcn/ui Starter Template
A modern React starter template built with Vite, TypeScript, Tailwind CSS, and shadcn/ui components.
## π Features
- β‘οΈ **Vite** - Fast build tool and development server
- βοΈ **React 18** - Latest React with hooks support
- π― **TypeScript** - Type safety and better developer experience
- π¨ **Tailwind CSS** - Utility-first CSS framework
- π§© **shadcn/ui** - Beautifully designed components built with Radix UI
- π¦ **Path Mapping** - Clean imports with `@/` prefix
## π¦ Included shadcn/ui Components
- Button
- Card
- Input
- Label
- Badge
- Dialog
- And more...
## π οΈ Getting Started
1. **Install dependencies**
```bash
npm install
```
2. **Start development server**
```bash
npm run dev
```
3. **Build for production**
```bash
npm run build
```
4. **Preview production build**
```bash
npm run preview
```
## π Project Structure
```
src/
βββ components/
β βββ ui/ # shadcn/ui components
βββ lib/
β βββ utils.ts # Utility functions
βββ App.tsx # Main application component
βββ index.css # Global styles with Tailwind
βββ main.tsx # Application entry point
```
## π¨ Customization
### Adding New shadcn/ui Components
This template is pre-configured with shadcn/ui. You can add more components by creating them in the `src/components/ui/` directory.
### Tailwind Configuration
The Tailwind configuration is set up with shadcn/ui color variables. You can customize colors and other design tokens in:
- `tailwind.config.js` - Tailwind configuration
- `src/index.css` - CSS custom properties for themes
### TypeScript Configuration
Path mapping is configured for clean imports:
```typescript
i β¦