# What We Provide - Standalone Module

This folder contains the standalone files for the "What we Provide" module, including its Tailwind CSS configuration.

## How to Run & Develop

### 1. Prerequisites
Make sure you have [Node.js](https://nodejs.org/) installed on your system.

### 2. Install Dependencies
Open your terminal in this directory and run:
```bash
npm install
```

### 3. Running the Tailwind CSS Watcher
To automatically rebuild the CSS while you make changes to the HTML files, run:
```bash
npm run dev
```

### 4. Build for Production
To generate a minified `style.css` for production use:
```bash
npm run build
```

## Folder Structure
- `*.html`: The main page templates.
- `style.css`: The compiled CSS file (used by the HTML files).
- `src/input.css`: The source CSS file where Tailwind directives and custom utility classes are defined.
- `client_bg-images/`: Directory containing images used in the project.
- `tailwind.config.js`: Configuration for Tailwind CSS (colors, fonts, etc.).
- `package.json`: NPM package configuration and scripts.

## Note on Images
The HTML files are configured to look for images in the `client_bg-images/` folder within this directory.
