File: //var/www/viitorcloud.stgviitor.com/Viitorcloud3.0-wp/README.md
# Viitor Cloud WordPress Theme
This repository contains the **Viitor Cloud custom WordPress theme**.
It uses **Tailwind CSS** for styling and is designed to be used with a WordPress installation.
---
## Table of Contents
- [Features](#features)
- [Requirements](#requirements)
- [Installation](#installation)
- [Development](#development)
- [Build Tailwind CSS](#build-tailwind-css)
- [Contributing](#contributing)
- [License](#license)
---
## Features
- Custom WordPress theme for Viitor Cloud website
- Tailwind CSS for utility-first styling
- Responsive and modern design
- Ready for local development with Node.js and npm
---
## Requirements
- WordPress 6.x or higher
- PHP 7.4+
- Node.js 16+
- npm or yarn
---
## Installation
1. Clone the repository into your WordPress themes directory:
```bash
cd C:\laragon\www\viitorcloud\wp-content\themes
git clone https://github.com/viitoradmin/Viitorcloud3.0-wp.git viitorcloud
````
2. Navigate into the theme folder:
```bash
cd viitorcloud
```
3. Install Node dependencies:
```bash
npm install
# or if you use yarn
# yarn install
```
4. Activate the theme in WordPress admin:
**Appearance → Themes → Activate "Viitor Cloud"**
---
## Development
To start developing locally:
```bash
npm run dev
```
* This will watch your CSS/JS files and rebuild Tailwind output automatically.
* Edit theme files in `src/` or the theme root as needed.
---
## Build Tailwind CSS
To build production-ready CSS:
```bash
npm run build
```
* Output CSS will be generated in `dist/` or wherever specified in `tailwind.config.js`.
---
## Contributing
1. Fork the repository
2. Create a feature branch: `git checkout -b feature-name`
3. Commit your changes: `git commit -m "Description of changes"`
4. Push to your branch: `git push origin feature-name`
5. Open a pull request
---
## License
This project is **proprietary** to Viitor Cloud. Do not distribute without permission.
---
```
This README covers:
- Project description
- Requirements
- How to install locally
- How to develop (with Tailwind watch)
- How to build production CSS
- Contribution guidelines