HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
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