# Kin Technology Static Assets 📁

Static assets and resources used across the Kin Technology applications. This directory contains shared images, icons, email signatures, and other static content.

## 📁 Structure

```
apps/static/
├── assets/             # Shared images and graphics
│   ├── kindo-machine.png
│   ├── kindo-machine.webp
│   ├── logo.png
│   └── logo.svg
├── email-signatures/   # Email signature templates
│   ├── black/          # Black theme signatures
│   └── green/          # Green theme signatures
├── other/              # Other static resources
│   ├── CONTRIBUTING.md
│   └── LICENSE
├── generate-index.js   # Script to generate index files
└── styles.css         # Shared CSS styles
```

## 🚀 Getting Started

### Prerequisites

- Node.js v20 or later
- pnpm v10.7.1 or later

### Installation

From the root of the monorepo:

```bash
# Install all dependencies
pnpm install

# Generate static content
pnpm static build
```

## 🔄 Common Workflows

### Adding New Assets

1. Add your asset to the appropriate directory:
   - Images: `assets/`
   - Email signatures: `email-signatures/`
   - Other resources: `other/`

2. Update the `generate-index.js` script if needed

3. Run the build command to generate updated index files

### Email Signatures

The email signatures are organized by theme:

- **Black theme**: Professional, dark signatures
- **Green theme**: Branded, colorful signatures

Each theme includes social media icons and contact information.

### Asset Optimization

- Use WebP format for images when possible
- Optimize PNG/JPEG files for web delivery
- Maintain consistent naming conventions

## 🎨 Design Guidelines

- Follow Kin Technology brand guidelines
- Use consistent color schemes
- Maintain high quality for all assets
- Ensure accessibility compliance

## 🤝 Contributing

Please read the [CONTRIBUTING.md](../../CONTRIBUTING.md) file at the root of the monorepo before contributing.

## 📄 License

This project is licensed under the proprietary Kin Technology Software License. See the [LICENSE](../../LICENSE) file for the complete terms and conditions. All rights reserved.

This software is confidential and proprietary to Kin Technology. Unauthorized use, reproduction, distribution, or disclosure of this software is strictly prohibited.

---

Made with ❤️ by [Kin Technology](https://kintechnology.io)
