diff --git a/.gitignore b/.gitignore
index cf6a4af..d6ef023 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,8 +4,49 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
+# Environment variables
+.env
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+# Logs
+logs/
+*.log
+sync-log.json
+
+# Temporary files
+temp-main/
+.tmp/
+.temp/
+
+# OS generated files
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
+
+# IDE files
+.vscode/
+.idea/
+*.swp
+*.swo
+*~
+
+# Build outputs
+dist/
+build/
+
+# Cache
+.cache/
+.parcel-cache/
+
# Runtime data
-pids
+pids/
*.pid
*.seed
*.pid.lock
@@ -14,19 +55,7 @@ pids
coverage/
# nyc test coverage
-.nyc_output
-
-# Grunt intermediate storage
-.grunt
-
-# Bower dependency directory
-bower_components
-
-# node-waf configuration
-.lock-wscript
-
-# Compiled binary addons
-build/Release
+.nyc_output/
# Dependency directories
jspm_packages/
@@ -46,26 +75,30 @@ jspm_packages/
# dotenv environment variables file
.env
-# IDE files
-.vscode/
-.idea/
-*.swp
-*.swo
-*~
+# next.js build output
+.next
-# OS generated files
-.DS_Store
-.DS_Store?
-._*
-.Spotlight-V100
-.Trashes
-ehthumbs.db
-Thumbs.db
+# Nuxt.js build output
+.nuxt
-# Logs
-logs
-*.log
+# Gatsby files
+.cache/
+public
-# Temporary files
+# Storybook build outputs
+.out
+.storybook-out
+
+# Temporary folders
tmp/
temp/
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/DEPLOY_SETUP.md b/DEPLOY_SETUP.md
deleted file mode 100644
index 1c32baf..0000000
--- a/DEPLOY_SETUP.md
+++ /dev/null
@@ -1,150 +0,0 @@
-# Deploy Setup Guide
-
-This guide explains how to configure the admin dashboard to deploy to your main KHY website when they are in separate repositories.
-
-## Repository Structure Examples
-
-### Example 1: Sibling Directories
-
-```
-Documents/
-├── khy_website/ # Main website repository
-│ ├── index.html
-│ ├── data/
-│ └── assets/
-└── khy_admin/ # Admin repository
- ├── admin.html
- ├── data/
- └── assets/
-```
-
-**Setup**: Run `npm run setup` and enter `../khy_website`
-
-### Example 2: Different Parent Directories
-
-```
-Documents/
-├── projects/
-│ └── khy_website/ # Main website repository
-└── admin_tools/
- └── khy_admin/ # Admin repository
-```
-
-**Setup**: Run `npm run setup` and enter `../../projects/khy_website`
-
-### Example 3: Absolute Paths
-
-```
-/Users/george/Documents/khy_website/ # Main website
-/Users/george/Documents/admin_tools/ # Admin repository
-```
-
-**Setup**: Run `npm run setup` and enter `/Users/george/Documents/khy_website`
-
-## Setup Process
-
-1. **Run the setup script**:
-
- ```bash
- npm run setup
- ```
-
-2. **Enter the path to your main KHY website**:
-
- - Use relative paths like `../khy_website` or `../../projects/khy_website`
- - Use absolute paths like `/full/path/to/khy_website`
-
-3. **Verify the configuration**:
- - The script will check if the path exists
- - It will verify required files are present
- - It will update `deploy-config.js` with your settings
-
-## Manual Configuration
-
-If you prefer to configure manually, edit `deploy-config.js`:
-
-```javascript
-module.exports = {
- targets: {
- main: "../khy_website", // Change this to your path
- },
- defaultTarget: "main",
- // ... rest of config
-};
-```
-
-## Testing the Setup
-
-After setup, test the configuration:
-
-```bash
-# Test with the configured path
-npm run deploy
-
-# Test with a specific path
-node deploy.js /path/to/your/khy_website
-```
-
-## Troubleshooting
-
-### "Target directory does not exist"
-
-- Check the path you entered during setup
-- Use absolute paths if relative paths don't work
-- Make sure the main website directory exists
-
-### "Missing required files"
-
-- Ensure your main website has `index.html` and `data/products.json`
-- The admin will create these files if they don't exist
-
-### "Permission denied"
-
-- Make sure you have write permissions to the main website directory
-- On macOS/Linux, you might need to adjust file permissions
-
-## Advanced Usage
-
-### Multiple Targets
-
-You can configure multiple deployment targets:
-
-```javascript
-targets: {
- staging: "../khy_website_staging",
- production: "../khy_website",
- backup: "/backup/khy_website"
-}
-```
-
-Then deploy to specific targets:
-
-```bash
-node deploy.js staging
-node deploy.js production
-```
-
-### Custom File Mappings
-
-Modify `filesToCopy` in `deploy-config.js` to copy different files:
-
-```javascript
-filesToCopy: [
- {
- source: "data/products.json",
- target: "data/products.json",
- description: "Product catalog data",
- },
- {
- source: "assets/images",
- target: "assets/images",
- description: "Product images",
- isDirectory: true,
- },
- {
- source: "config/settings.json",
- target: "config/admin-settings.json",
- description: "Admin settings",
- },
-];
-```
diff --git a/README.md b/README.md
index 68f54d0..4b8f3d7 100644
--- a/README.md
+++ b/README.md
@@ -1,146 +1,217 @@
# KHY Admin Dashboard
-A **preview/staging environment** for managing KHY Furniture's product catalog with safe testing and one-click deployment to production.
+A comprehensive product management dashboard for the KHY website, allowing you to manage products, categories, and images with live preview capabilities.
## Features
-- **Add Products**: Create new products with full details
-- **Edit Products**: Modify existing product information
-- **Delete Products**: Remove products with confirmation
-- **Preview Products**: See how products will look before saving
-- **Export JSON**: Download updated products.json file
-- **Live Preview**: See exactly how changes will look on the website
-- **One-Click Deploy**: Deploy changes to production with a single command
-- **Automatic Backups**: Safe deployment with backup system
-- **No Technical Knowledge Required**: Simple form-based interface
+- **Product Management**: Add, edit, delete, and duplicate products
+- **Category Management**: Organize products into categories
+- **Image Management**: Upload, organize, and manage product images
+- **Live Preview**: Preview how changes will look on the actual website
+- **Sync to Main Site**: Deploy changes to your main website repository
+- **Responsive Design**: Works on desktop, tablet, and mobile devices
## Quick Start
-1. **Setup deploy paths** (first time only):
+### 1. Setup
- ```bash
- npm run setup
- # Follow the prompts to configure where your main KHY website is located
- ```
+```bash
+# Navigate to the admin dashboard directory
+cd admin-dashboard
-2. **Open the dashboard**:
+# Install dependencies (optional - for image processing)
+npm install
- ```bash
- # Option 1: Double-click admin.html in your file explorer
- # Option 2: Run a local server
- npm start
- # Then open http://localhost:8080/admin.html
- ```
+# Start the development server
+npm start
+```
-3. **Preview the website** (optional):
+### 2. Access the Dashboard
- ```bash
- # Option A: Auto-start server and open all preview pages
- npm run preview
+Open your browser and go to: `http://localhost:3000`
- # Option B: Start server manually
- npm start
- # Then open http://localhost:8080/index.html (homepage)
- # Open http://localhost:8080/product-catalog.html (catalog)
- # Open http://localhost:8080/product-detail.html (product details)
- ```
+### 3. Using the Dashboard
-4. **Manage products**:
+#### Products Section
- - Add new products using the form
- - Edit existing products by clicking "Edit"
- - Delete products by clicking "Delete"
- - Preview changes before saving
+- **Add Product**: Click "Add Product" to create a new product
+- **Edit Product**: Click the "Edit" button on any product card
+- **Duplicate Product**: Click "Duplicate" to create a copy of an existing product
+- **Delete Product**: Click "Delete" to remove a product (with confirmation)
+- **Search**: Use the search bar to find specific products
-5. **Deploy to production**:
+#### Categories Section
- ```bash
- # Option A: Automated deploy (recommended)
- npm run deploy
- # This copies admin/data/products.json → main website data/products.json
- # And copies admin/assets/images/ → main website assets/images/
+- **Add Category**: Create new product categories
+- **Edit Category**: Modify existing categories
+- **View Products**: See all products in a specific category
+- **Delete Category**: Remove categories (only if no products are using them)
- # Option B: Manual deploy
- # Click "Download products.json" and replace in main website
- ```
+#### Images Section
-## Complete Workflow
+- **Upload Images**: Drag and drop or click to upload new images
+- **View Images**: See all uploaded images with metadata
+- **Rename Images**: Change image names
+- **Delete Images**: Remove unused images
-1. **Make Changes** → Use admin dashboard to add/edit/delete products
-2. **Preview Changes** → Open `index.html`, `product-catalog.html`, `product-detail.html` to see how changes look
-3. **Confirm Changes** → Review everything thoroughly
-4. **Deploy to Production** → Run `npm run deploy` to copy updated files to the main KHY website
+#### Preview Section
-> **Detailed Workflow**: See [WORKFLOW.md](WORKFLOW.md) for complete instructions
+- **Product Catalog**: See how your product catalog looks to customers
+- **Product Detail**: Preview individual product pages
+- **Interactive**: Click on products in catalog to view details
+
+### 4. Syncing to Main Site
+
+When you're ready to deploy your changes:
+
+1. Click the "Sync to Main Site" button
+2. Watch the sync progress in the modal
+3. Your changes will be committed and pushed to the main repository
## File Structure
```
-admin/
-├── admin.html # Main admin dashboard
-├── index.html # Homepage (reference)
-├── product-catalog.html # Product catalog page (reference)
-├── product-detail.html # Product detail page (reference)
+admin-dashboard/
+├── src/
+│ ├── index.html # Main dashboard interface
+│ ├── css/
+│ │ └── admin.css # Dashboard styling
+│ └── js/
+│ ├── admin.js # Main dashboard controller
+│ ├── productManager.js # Product management logic
+│ ├── categoryManager.js # Category management logic
+│ └── imageManager.js # Image management logic
├── data/
-│ └── products.json # Product data file
-├── assets/ # Images and resources
-├── scripts/ # JavaScript files
-├── styles/ # CSS files
-├── src/ # Source files
-├── tailwind.config.js # Tailwind configuration
-├── deploy.js # Deploy script
-├── start-server.js # Auto-start server script
-├── package.json # Project configuration
-├── README.md # This file
-└── WORKFLOW.md # Detailed workflow guide
+│ └── products.json # Product and category data
+├── assets/
+│ └── images/
+│ └── products/ # Product images
+├── preview/
+│ ├── catalog.html # Product catalog preview
+│ └── detail.html # Product detail preview
+├── scripts/
+│ └── sync-to-main.js # Sync script for deployment
+├── package.json # Node.js dependencies
+└── README.md # This file
```
-## Usage Instructions
+## Configuration
-### Adding a New Product
+### Main Repository URL
-1. Fill out the product form with:
- - Product name and description
- - Category selection
- - Price and model number
- - Available sizes and colors
- - Stock status and rating
-2. Click "Preview Product" to see how it looks
-3. Click "Add Product" to save
+Before using the sync feature, update the repository URL in `scripts/sync-to-main.js`:
-### Editing a Product
+```javascript
+this.mainRepoUrl = "https://github.com/your-username/khy-website.git";
+```
-1. Click "Edit" on any product in the list
-2. The form will auto-fill with existing data
-3. Make your changes
-4. Click "Preview Product" to see changes
-5. Click "Update Product" to save or "Cancel Edit" to abort
+### Data Structure
-### Deleting a Product
+The dashboard expects your `products.json` to have this structure:
-1. Click "Delete" on any product
-2. Confirm the deletion in the popup
-3. Product is removed immediately
+```json
+{
+ "products": [
+ {
+ "id": 1,
+ "name": "Product Name",
+ "description": "Short description",
+ "descriptionLong": ["Paragraph 1", "Paragraph 2"],
+ "category": "category-id",
+ "image": "assets/images/products/image.jpg",
+ "images": [
+ "assets/images/products/image1.jpg",
+ "assets/images/products/image2.jpg"
+ ],
+ "galleryPairs": [
+ "assets/images/products/image1.jpg",
+ "assets/images/products/image2.jpg"
+ ],
+ "additionalInformation": {
+ "Material": "Product material",
+ "Design": "Design description",
+ "Use Cases": "Use case description"
+ },
+ "warranty": "5 years"
+ }
+ ],
+ "categories": [
+ {
+ "id": "category-id",
+ "name": "Category Name",
+ "description": "Category description"
+ }
+ ]
+}
+```
-### Exporting Changes
+## Development
-1. After making all your changes
-2. Click "Download products.json"
-3. Replace the existing `data/products.json` file in your main website
-4. Your website will show the updated products
+### Adding New Features
-## Technical Notes
+1. **New Product Fields**: Add form fields in `src/index.html` and handle them in `productManager.js`
+2. **New Category Fields**: Extend the category form and logic in `categoryManager.js`
+3. **New Image Features**: Add functionality in `imageManager.js`
-- **No server required**: Works entirely in the browser
-- **No database needed**: Uses JSON file storage
-- **Cross-platform**: Works on Windows, Mac, Linux
-- **Offline capable**: Works without internet connection
-- **Simple deployment**: Just copy files to any web server
+### Styling
+
+The dashboard uses a custom CSS framework with:
+
+- **Colors**: Gradient-based color scheme
+- **Typography**: Montserrat + Playfair Display fonts
+- **Components**: Card-based layout with hover effects
+- **Responsive**: Mobile-first responsive design
+
+### API Integration
+
+Currently, the dashboard works with local JSON files. To integrate with a real API:
+
+1. Replace `fetch('data/products.json')` calls with API endpoints
+2. Update the `saveData()` methods to POST to your API
+3. Handle authentication and error states
+
+## Deployment
+
+### Option 1: Separate Repository (Recommended)
+
+1. Move this admin dashboard to its own repository
+2. Update the sync script with your main repository URL
+3. Deploy the admin dashboard to a separate domain/subdomain
+4. Use the sync feature to deploy changes to your main site
+
+### Option 2: Subdirectory
+
+1. Keep the admin dashboard in a subdirectory of your main site
+2. Add authentication to protect the admin area
+3. Use the sync feature to update the main site files
+
+## Security Considerations
+
+- **Authentication**: Add login functionality before deploying
+- **File Uploads**: Validate and sanitize uploaded images
+- **Data Validation**: Validate all form inputs
+- **Access Control**: Restrict access to authorized users only
+
+## Troubleshooting
+
+### Common Issues
+
+1. **Images not loading**: Check file paths and ensure images exist
+2. **Sync fails**: Verify repository URL and Git credentials
+3. **Preview not working**: Ensure the preview HTML files are accessible
+4. **Data not saving**: Check browser console for JavaScript errors
+
+### Getting Help
+
+- Check the browser console for error messages
+- Verify all file paths are correct
+- Ensure the data structure matches the expected format
+- Test with a small dataset first
+
+## License
+
+This admin dashboard is part of the KHY website project.
## Support
-For technical support or questions about the admin dashboard, contact your development team.
-
-## Version History
-
-- **v1.0.0**: Initial release with full CRUD functionality
+For support or questions about the admin dashboard, please contact the development team.
diff --git a/WORKFLOW.md b/WORKFLOW.md
deleted file mode 100644
index 0b90b06..0000000
--- a/WORKFLOW.md
+++ /dev/null
@@ -1,164 +0,0 @@
-# KHY Admin Workflow Guide
-
-## Overview
-
-This admin dashboard provides a **preview/staging environment** where you can make changes, see exactly how they'll look on the website, and then deploy to production with confidence.
-
-## Complete Workflow
-
-### 1. 🎯 **Make Changes**
-
-- Open `admin.html` in your browser
-- Add, edit, or delete products using the form interface
-- Use "Preview Product" to see how individual products will look
-
-### 2. 👀 **Preview Changes**
-
-#### Option A: Auto-Start Preview (Recommended)
-
-```bash
-# One command to start server and open all preview pages
-npm run preview
-
-# Server will automatically stop when:
-# - All preview tabs are closed
-# - Deploy command is run
-# - Manual stop: npm run preview:kill
-```
-
-#### Option B: Manual Preview
-
-- Click "👀 Preview Website" button in admin dashboard
-- Or manually open `index.html`, `product-catalog.html`, `product-detail.html`
-- Navigate through the site to ensure everything looks correct
-
-### 3. ✅ **Confirm Changes**
-
-- Review all changes thoroughly
-- Test product links and functionality
-- Ensure images load correctly
-
-### 4. 🚀 **Deploy to Production**
-
-The deploy process copies updated files from the **admin directory** to the **main KHY website directory**.
-
-#### Option A: Automated Deploy (Recommended)
-
-```bash
-# Navigate to admin directory
-cd admin
-
-# Copy updated files to main website
-npm run deploy
-```
-
-**What this does:**
-
-- Copies `admin/data/products.json` → `../data/products.json` (main website)
-- Copies `admin/assets/images/` → `../assets/images/` (main website)
-- Creates backup of current main website files
-- Updates the live KHY website immediately
-
-#### Option B: Manual Deploy
-
-1. Click "Download products.json" in the admin dashboard
-2. Manually copy the downloaded file to `../data/products.json`
-3. Manually copy any new images from `admin/assets/images/` to `../assets/images/`
-
-## File Structure
-
-```
-admin/ # Admin/Staging Environment
-├── admin.html # Admin dashboard
-├── index.html # Homepage preview
-├── product-catalog.html # Catalog preview
-├── product-detail.html # Product detail preview
-├── data/products.json # Staging product data
-├── assets/images/ # Staging images
-├── deploy.js # Deploy script
-└── package.json # NPM scripts
-
-../ # Main Website (Production)
-├── index.html # Live homepage
-├── product-catalog.html # Live catalog
-├── product-detail.html # Live product details
-├── data/products.json # Live product data
-└── assets/images/ # Live images
-```
-
-## Key Benefits
-
-✅ **Safe Testing**: Make changes without affecting the live site
-✅ **Visual Preview**: See exactly how changes will look
-✅ **Easy Deployment**: One-click deploy to production
-✅ **Backup System**: Automatic backups before deployment
-✅ **No Technical Knowledge**: Simple interface for non-technical users
-
-## Deployment Process
-
-### What Happens During Deploy:
-
-1. **Stop Preview Server**: Automatically stops the preview server (if running)
-2. **Validation**: Checks that main KHY website directory exists and has required files
-3. **Backup**: Creates timestamped backup of current main website data
-4. **Copy Files**:
- - Copies `admin/data/products.json` → `../data/products.json` (main website)
- - Copies `admin/assets/images/` → `../assets/images/` (main website)
-5. **Verification**: Confirms all files were copied successfully
-6. **Completion**: Main KHY website is updated immediately with new product data
-
-### Backup System:
-
-- All deployments create automatic backups in `admin/backups/`
-- Backups are timestamped for easy identification
-- Can restore from backup if needed
-
-## Troubleshooting
-
-### Deploy Fails?
-
-- Check that you're in the admin directory
-- Verify the main website directory exists
-- Ensure you have write permissions
-
-### Changes Not Showing?
-
-- Clear browser cache (Ctrl+F5 or Cmd+Shift+R)
-- Check that the correct `products.json` file was updated
-- Verify image paths are correct
-
-### Need to Restore?
-
-- Find the backup in `admin/backups/`
-- Copy the backup `products.json` to the main website
-- Or run the deploy script again
-
-## Best Practices
-
-1. **Always Preview**: Use the preview pages before deploying
-2. **Test Everything**: Check all product links and images
-3. **Deploy Regularly**: Don't let changes pile up
-4. **Keep Backups**: The system creates them automatically
-5. **Document Changes**: Keep notes of what you changed and why
-
-## Quick Commands
-
-```bash
-# Start preview server
-npm start
-
-# Deploy to production
-npm run deploy
-
-# View help
-npm run preview
-```
-
-## Support
-
-If you encounter any issues:
-
-1. Check the browser console for errors
-2. Verify file permissions
-3. Ensure all required files exist
-4. Contact your development team for assistance
diff --git a/admin-dashboard/.gitignore b/admin-dashboard/.gitignore
deleted file mode 100644
index d6ef023..0000000
--- a/admin-dashboard/.gitignore
+++ /dev/null
@@ -1,104 +0,0 @@
-# Dependencies
-node_modules/
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-
-# Environment variables
-.env
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-# Logs
-logs/
-*.log
-sync-log.json
-
-# Temporary files
-temp-main/
-.tmp/
-.temp/
-
-# OS generated files
-.DS_Store
-.DS_Store?
-._*
-.Spotlight-V100
-.Trashes
-ehthumbs.db
-Thumbs.db
-
-# IDE files
-.vscode/
-.idea/
-*.swp
-*.swo
-*~
-
-# Build outputs
-dist/
-build/
-
-# Cache
-.cache/
-.parcel-cache/
-
-# Runtime data
-pids/
-*.pid
-*.seed
-*.pid.lock
-
-# Coverage directory used by tools like istanbul
-coverage/
-
-# nyc test coverage
-.nyc_output/
-
-# Dependency directories
-jspm_packages/
-
-# Optional npm cache directory
-.npm
-
-# Optional REPL history
-.node_repl_history
-
-# Output of 'npm pack'
-*.tgz
-
-# Yarn Integrity file
-.yarn-integrity
-
-# dotenv environment variables file
-.env
-
-# next.js build output
-.next
-
-# Nuxt.js build output
-.nuxt
-
-# Gatsby files
-.cache/
-public
-
-# Storybook build outputs
-.out
-.storybook-out
-
-# Temporary folders
-tmp/
-temp/
-
-# Editor directories and files
-.vscode/*
-!.vscode/extensions.json
-.idea
-*.suo
-*.ntvs*
-*.njsproj
-*.sln
-*.sw?
diff --git a/admin-dashboard/README.md b/admin-dashboard/README.md
deleted file mode 100644
index 4b8f3d7..0000000
--- a/admin-dashboard/README.md
+++ /dev/null
@@ -1,217 +0,0 @@
-# KHY Admin Dashboard
-
-A comprehensive product management dashboard for the KHY website, allowing you to manage products, categories, and images with live preview capabilities.
-
-## Features
-
-- **Product Management**: Add, edit, delete, and duplicate products
-- **Category Management**: Organize products into categories
-- **Image Management**: Upload, organize, and manage product images
-- **Live Preview**: Preview how changes will look on the actual website
-- **Sync to Main Site**: Deploy changes to your main website repository
-- **Responsive Design**: Works on desktop, tablet, and mobile devices
-
-## Quick Start
-
-### 1. Setup
-
-```bash
-# Navigate to the admin dashboard directory
-cd admin-dashboard
-
-# Install dependencies (optional - for image processing)
-npm install
-
-# Start the development server
-npm start
-```
-
-### 2. Access the Dashboard
-
-Open your browser and go to: `http://localhost:3000`
-
-### 3. Using the Dashboard
-
-#### Products Section
-
-- **Add Product**: Click "Add Product" to create a new product
-- **Edit Product**: Click the "Edit" button on any product card
-- **Duplicate Product**: Click "Duplicate" to create a copy of an existing product
-- **Delete Product**: Click "Delete" to remove a product (with confirmation)
-- **Search**: Use the search bar to find specific products
-
-#### Categories Section
-
-- **Add Category**: Create new product categories
-- **Edit Category**: Modify existing categories
-- **View Products**: See all products in a specific category
-- **Delete Category**: Remove categories (only if no products are using them)
-
-#### Images Section
-
-- **Upload Images**: Drag and drop or click to upload new images
-- **View Images**: See all uploaded images with metadata
-- **Rename Images**: Change image names
-- **Delete Images**: Remove unused images
-
-#### Preview Section
-
-- **Product Catalog**: See how your product catalog looks to customers
-- **Product Detail**: Preview individual product pages
-- **Interactive**: Click on products in catalog to view details
-
-### 4. Syncing to Main Site
-
-When you're ready to deploy your changes:
-
-1. Click the "Sync to Main Site" button
-2. Watch the sync progress in the modal
-3. Your changes will be committed and pushed to the main repository
-
-## File Structure
-
-```
-admin-dashboard/
-├── src/
-│ ├── index.html # Main dashboard interface
-│ ├── css/
-│ │ └── admin.css # Dashboard styling
-│ └── js/
-│ ├── admin.js # Main dashboard controller
-│ ├── productManager.js # Product management logic
-│ ├── categoryManager.js # Category management logic
-│ └── imageManager.js # Image management logic
-├── data/
-│ └── products.json # Product and category data
-├── assets/
-│ └── images/
-│ └── products/ # Product images
-├── preview/
-│ ├── catalog.html # Product catalog preview
-│ └── detail.html # Product detail preview
-├── scripts/
-│ └── sync-to-main.js # Sync script for deployment
-├── package.json # Node.js dependencies
-└── README.md # This file
-```
-
-## Configuration
-
-### Main Repository URL
-
-Before using the sync feature, update the repository URL in `scripts/sync-to-main.js`:
-
-```javascript
-this.mainRepoUrl = "https://github.com/your-username/khy-website.git";
-```
-
-### Data Structure
-
-The dashboard expects your `products.json` to have this structure:
-
-```json
-{
- "products": [
- {
- "id": 1,
- "name": "Product Name",
- "description": "Short description",
- "descriptionLong": ["Paragraph 1", "Paragraph 2"],
- "category": "category-id",
- "image": "assets/images/products/image.jpg",
- "images": [
- "assets/images/products/image1.jpg",
- "assets/images/products/image2.jpg"
- ],
- "galleryPairs": [
- "assets/images/products/image1.jpg",
- "assets/images/products/image2.jpg"
- ],
- "additionalInformation": {
- "Material": "Product material",
- "Design": "Design description",
- "Use Cases": "Use case description"
- },
- "warranty": "5 years"
- }
- ],
- "categories": [
- {
- "id": "category-id",
- "name": "Category Name",
- "description": "Category description"
- }
- ]
-}
-```
-
-## Development
-
-### Adding New Features
-
-1. **New Product Fields**: Add form fields in `src/index.html` and handle them in `productManager.js`
-2. **New Category Fields**: Extend the category form and logic in `categoryManager.js`
-3. **New Image Features**: Add functionality in `imageManager.js`
-
-### Styling
-
-The dashboard uses a custom CSS framework with:
-
-- **Colors**: Gradient-based color scheme
-- **Typography**: Montserrat + Playfair Display fonts
-- **Components**: Card-based layout with hover effects
-- **Responsive**: Mobile-first responsive design
-
-### API Integration
-
-Currently, the dashboard works with local JSON files. To integrate with a real API:
-
-1. Replace `fetch('data/products.json')` calls with API endpoints
-2. Update the `saveData()` methods to POST to your API
-3. Handle authentication and error states
-
-## Deployment
-
-### Option 1: Separate Repository (Recommended)
-
-1. Move this admin dashboard to its own repository
-2. Update the sync script with your main repository URL
-3. Deploy the admin dashboard to a separate domain/subdomain
-4. Use the sync feature to deploy changes to your main site
-
-### Option 2: Subdirectory
-
-1. Keep the admin dashboard in a subdirectory of your main site
-2. Add authentication to protect the admin area
-3. Use the sync feature to update the main site files
-
-## Security Considerations
-
-- **Authentication**: Add login functionality before deploying
-- **File Uploads**: Validate and sanitize uploaded images
-- **Data Validation**: Validate all form inputs
-- **Access Control**: Restrict access to authorized users only
-
-## Troubleshooting
-
-### Common Issues
-
-1. **Images not loading**: Check file paths and ensure images exist
-2. **Sync fails**: Verify repository URL and Git credentials
-3. **Preview not working**: Ensure the preview HTML files are accessible
-4. **Data not saving**: Check browser console for JavaScript errors
-
-### Getting Help
-
-- Check the browser console for error messages
-- Verify all file paths are correct
-- Ensure the data structure matches the expected format
-- Test with a small dataset first
-
-## License
-
-This admin dashboard is part of the KHY website project.
-
-## Support
-
-For support or questions about the admin dashboard, please contact the development team.
diff --git a/admin-dashboard/assets/icons/address.png b/admin-dashboard/assets/icons/address.png
deleted file mode 100644
index 28e21f5..0000000
Binary files a/admin-dashboard/assets/icons/address.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/phone.png b/admin-dashboard/assets/icons/phone.png
deleted file mode 100644
index 1e83e1a..0000000
Binary files a/admin-dashboard/assets/icons/phone.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/shipping.png b/admin-dashboard/assets/icons/shipping.png
deleted file mode 100644
index 9fb9a8f..0000000
Binary files a/admin-dashboard/assets/icons/shipping.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/star.png b/admin-dashboard/assets/icons/star.png
deleted file mode 100644
index 4f7a231..0000000
Binary files a/admin-dashboard/assets/icons/star.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/support.png b/admin-dashboard/assets/icons/support.png
deleted file mode 100644
index ebb5cd6..0000000
Binary files a/admin-dashboard/assets/icons/support.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/time.png b/admin-dashboard/assets/icons/time.png
deleted file mode 100644
index d45e13b..0000000
Binary files a/admin-dashboard/assets/icons/time.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/trophy.png b/admin-dashboard/assets/icons/trophy.png
deleted file mode 100644
index c1820f9..0000000
Binary files a/admin-dashboard/assets/icons/trophy.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/warranty.png b/admin-dashboard/assets/icons/warranty.png
deleted file mode 100644
index 6448c7c..0000000
Binary files a/admin-dashboard/assets/icons/warranty.png and /dev/null differ
diff --git a/admin-dashboard/assets/images/khy_logo.png b/admin-dashboard/assets/images/khy_logo.png
deleted file mode 100644
index 453d678..0000000
Binary files a/admin-dashboard/assets/images/khy_logo.png and /dev/null differ
diff --git a/admin-dashboard/assets/images/prod-comparison.jpg b/admin-dashboard/assets/images/prod-comparison.jpg
deleted file mode 100644
index a44e83f..0000000
Binary files a/admin-dashboard/assets/images/prod-comparison.jpg and /dev/null differ
diff --git a/admin-dashboard/data/products.json b/admin-dashboard/data/products.json
deleted file mode 100644
index 5da43a9..0000000
--- a/admin-dashboard/data/products.json
+++ /dev/null
@@ -1,3056 +0,0 @@
-{
- "products": [
- {
- "id": 1,
- "name": "Modesty Panels",
- "description": "Practical design ideal for classrooms, training centres, and lecture rooms. Built‑in modesty panel for a clean, professional look. Available in various sizes to suit different layouts; comfortable for group learning and workshops.",
- "image": "assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg",
- "alt": "Modesty Panels",
- "category": "training-tables",
- "images": [
- "assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg",
- "assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg",
- "assets/images/products/categories/training-tables/modesty-panels/entrawood-catalogue-72dpi-24-300x300.jpg"
- ],
- "descriptionLong": [
- "Practical training table with integrated modesty panel. Ideal for classrooms, training centres, and lecture rooms. Offered in multiple sizes to suit room layouts.",
- "Comfortable for group learning, workshops, and student use."
- ],
- "additionalInformation": {
- "Material": "Engineered wood and steel",
- "Feature": "Built‑in modesty panel",
- "Sizes": "Various sizes available",
- "Use Cases": "Classrooms, training, lecture rooms",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg",
- "assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg"
- ]
- },
- {
- "id": 2,
- "name": "Domino",
- "description": "Flexible training table designed for multi‑functional spaces. Folding and nesting for compact storage. Built‑in linking device and lockable castors for smooth, secure movement.",
- "image": "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp",
- "alt": "Domino",
- "category": "training-tables",
- "images": [
- "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp",
- "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp",
- "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_02_600x600px-1.webp"
- ],
- "descriptionLong": [
- "Flexible training table for multi‑functional spaces. Folding and nesting design for compact storage. Easy to rearrange and connect via built‑in linking device.",
- "Lockable castors for smooth movement and secure placement."
- ],
- "additionalInformation": {
- "Material": "Solid wood top, steel frame",
- "Design": "Folding & nesting; built‑in linking; lockable castors",
- "Use Cases": "Multi‑functional training and collaboration",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp",
- "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp"
- ]
- },
- {
- "id": 3,
- "name": "Slim",
- "description": "Easy flip‑top design for quick setup and storage. Flexible solution for training rooms, conferences, and workshops. Strong, durable frame for long‑lasting use.",
- "image": "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg",
- "alt": "Slim",
- "category": "training-tables",
- "images": [
- "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg",
- "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_05_600x600px.jpg",
- "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_06_600x600px.jpg",
- "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_07_600x600px.jpg"
- ],
- "descriptionLong": [
- "Slim’s flip‑top makes setup fast and storage effortless, perfect for training rooms, conferences, and workshops.",
- "A strong, durable frame ensures reliable, long‑lasting performance day after day."
- ],
- "additionalInformation": {
- "Material": "Steel/aluminum frame; durable top",
- "Design": "Flip‑top for easy nesting and storage",
- "Use Cases": "Training rooms, conferences, workshops",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_04_600x600px.jpg",
- "assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_05_600x600px.jpg",
- "assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_06_600x600px.jpg"
- ]
- },
- {
- "id": 4,
- "name": "Fold Up",
- "description": "Practical fold‑up table for easy setup and storage. Lightweight yet strong for simple movement. Ideal for training rooms, classrooms, and multipurpose spaces.",
- "image": "assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg",
- "alt": "Fold Up",
- "category": "training-tables",
- "images": [
- "assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg",
- "assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg",
- "assets/images/products/categories/training-tables/fold-up/training-foldup-300x300.jpg",
- "assets/images/products/categories/training-tables/fold-up/Progress-Office-Entrakor-Training2-350x350.jpg"
- ],
- "descriptionLong": [
- "Practical fold‑up design for rapid setup and compact storage. Lightweight yet strong; easy to move and reconfigure.",
- "Ideal for training rooms, classrooms, and multipurpose spaces."
- ],
- "additionalInformation": {
- "Material": "Engineered wood, steel hardware",
- "Design": "Fold‑up; lightweight yet strong",
- "Use Cases": "Training rooms, classrooms, multipurpose",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg",
- "assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg"
- ]
- },
- {
- "id": 5,
- "name": "Graft",
- "description": "Arrange in a semi‑circle for group learning or spaced layouts. Available as stackable or non‑stackable to suit your needs. Perfect for schools, training centres, and collaborative environments.",
- "image": "assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg",
- "alt": "Graft",
- "category": "training-tables",
- "images": [
- "assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg",
- "assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg",
- "assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom6-350x350.jpg",
- "assets/images/products/categories/training-tables/graft/entrawood-catalogue-72dpi-47-600x600 (1).jpg"
- ],
- "descriptionLong": [
- "Configurable for semi‑circle group learning or spaced layouts. Choose stackable or non‑stackable options to suit storage needs.",
- "Ideal for schools, training centres, and collaborative spaces."
- ],
- "additionalInformation": {
- "Material": "Steel frame, durable top",
- "Configuration": "Semi‑circle layouts; stackable or non‑stackable",
- "Use Cases": "Schools, training centres, collaborative environments",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg",
- "assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg"
- ]
- },
- {
- "id": 6,
- "name": "Cocoon",
- "description": "Rounded corner design for a clean, modern look. Helps define personal workspace while keeping an open‑plan feel.",
- "image": "assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg",
- "alt": "Cocoon",
- "category": "screens",
- "images": [
- "assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg",
- "assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg",
- "assets/images/products/categories/screens/cocoon/MosheCapital-Nov2019-LR-4323-350x350.jpg"
- ],
- "descriptionLong": [
- "Cocoon brings gentle curves and a refined presence to open offices, creating a sense of personal territory without shutting users off from their surroundings. Its rounded corners and soft geometry help calm busy floors, while the carefully considered height and width add visual order to shared environments.",
- "By subtly defining the boundary of a workstation, Cocoon supports focused work and quick conversations alike. It pairs easily with modern desking and seating systems to elevate the overall look and feel of a space, offering privacy, comfort, and cohesion in one minimalist form."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum frame",
- "Adjustments": "Height adjustable, flexible positioning",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg",
- "assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg"
- ]
- },
- {
- "id": 7,
- "name": "Global Mute Cocoon",
- "description": "Lightweight frameless screens for modern offices. Easy to position with no brackets required. Creates privacy and reduces distractions in open‑plan areas.",
- "image": "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg",
- "alt": "Global Mute Cocoon",
- "category": "screens",
- "images": [
- "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg",
- "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg"
- ],
- "descriptionLong": [
- "Lightweight, frameless screen for modern offices. Positions easily without brackets.",
- "Adds privacy and reduces distractions in open‑plan areas. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Acoustic panels",
- "Design": "Lightweight, frameless; no brackets needed",
- "Use Cases": "Open‑plan privacy and distraction reduction",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg",
- "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg"
- ]
- },
- {
- "id": 8,
- "name": "Global Mute Desk",
- "description": "Frameless pinnable desk screens for a modern, minimal look. Fits seamlessly with all desk system ranges. Easy to maintain and built for everyday use.",
- "image": "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp",
- "alt": "Global Mute Desk",
- "category": "screens",
- "images": [
- "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp",
- "assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp",
- "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-SCREEN-1.jpg"
- ],
- "descriptionLong": [
- "Frameless, pinnable desk screens with a minimal look. Seamlessly fits all desk system ranges.",
- "Easy maintenance; made for everyday use. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Acoustic panels",
- "Design": "Frameless, pinnable; minimal aesthetic",
- "Compatibility": "All desk system ranges",
- "Care": "Easy to maintain",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp",
- "assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp"
- ]
- },
- {
- "id": 9,
- "name": "Simple",
- "description": "Full fabric desk screen with smooth rounded corners. Adds privacy while enhancing any workspace. Easy to integrate into open‑plan or individual desk setups.",
- "image": "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp",
- "alt": "Simple",
- "category": "screens",
- "images": [
- "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp",
- "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp",
- "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-3.webp"
- ],
- "descriptionLong": [
- "Full fabric desk screen with smooth rounded corners. Adds privacy while elevating the workspace look.",
- "Integrates easily into open‑plan and individual desk setups. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum frame",
- "Design": "Minimalist and clean aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp",
- "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp"
- ]
- },
- {
- "id": 10,
- "name": "Diamond Loop",
- "description": "Distinctive triangular loop leg profile for a stylish touch. Executive desk with a clean, modern design. Wide surface area for work, meetings, and accessories.",
- "image": "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg",
- "alt": "Diamond Loop",
- "category": "executive-desks",
- "images": [
- "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg",
- "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg",
- "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-OPEN-PLAN-1.jpg"
- ],
- "descriptionLong": [
- "Diamond Loop features a distinctive triangular loop leg profile for a stylish touch. The clean, modern design provides a wide surface area suitable for work, meetings, and accessories.",
- "Built for executive settings that value statement design and functional workspace."
- ],
- "additionalInformation": {
- "Material": "Premium wood top, aluminum frame",
- "Technology": "Integrated cable management system",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg",
- "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg"
- ]
- },
- {
- "id": 11,
- "name": "Allure",
- "description": "Modern L-shape design with a spacious work surface for multitasking. Perfect for private offices or executive spaces.",
- "image": "assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg",
- "alt": "Allure",
- "category": "executive-desks",
- "images": [
- "assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg",
- "assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg",
- "assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_07_600x600px.jpg"
- ],
- "descriptionLong": [
- "Allure features a modern L-shape design that maximizes surface area and workflow. The spacious work surface supports multitasking, meetings, and accessories.",
- "An excellent fit for private offices or executive spaces seeking a refined look."
- ],
- "additionalInformation": {
- "Material": "Premium worktop, sturdy frame",
- "Design": "Modern L-shape with refined look",
- "Work Surface": "Spacious surface for multitasking",
- "Use Cases": "Private offices, executive spaces",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg",
- "assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg"
- ]
- },
- {
- "id": 12,
- "name": "Ecocentric Lite",
- "description": "Executive desk designed with a professional look. Comes with a 3 drawer pedestal for organized storage. Ideal for managerial and clerical offices.",
- "image": "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg",
- "alt": "Ecocentric Lite",
- "category": "executive-desks",
- "images": [
- "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg",
- "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-ACACIA-AND-BLACK.jpg",
- "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-DARK-EUCALYPTUS-AND-BLACK.jpg",
- "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-NATURAL-WALNUT.jpg"
- ],
- "descriptionLong": [
- "Ecocentric Lite is an executive desk designed with a professional look. It comes with a 3 drawer pedestal for organized storage and daily efficiency.",
- "Ideal for managerial and clerical offices that need practical, reliable workspace."
- ],
- "additionalInformation": {
- "Material": "Professional worktop, sturdy frame",
- "Design": "Professional executive look",
- "Storage": "Includes 3 drawer pedestal",
- "Use Cases": "Managerial and clerical offices",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_00_600x600px.jpg",
- "assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_02_600x600px.jpg"
- ]
- },
- {
- "id": 13,
- "name": "Evolution L-Shape",
- "description": "Sleek L-shape design for a modern office look. Designed to fit seamlessly into modern office layouts.",
- "image": "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png",
- "alt": "Evolution L-Shape",
- "category": "executive-desks",
- "images": [
- "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png",
- "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg",
- "assets/images/products/categories/executive-desks/evolution-l-shape/92dpi-12-300x300.jpg",
- "assets/images/products/categories/executive-desks/evolution-l-shape/MTC-minerals-IXAXA-12-2017-2105-800x800.jpg"
- ],
- "descriptionLong": [
- "Evolution L delivers a sleek L-shape design for a modern office look. It's designed to fit seamlessly into modern office layouts and workflows.",
- "A refined, space‑efficient solution for contemporary executive environments."
- ],
- "additionalInformation": {
- "Material": "Premium worktop, sturdy frame",
- "Design": "Sleek L-shape for modern office look",
- "Integration": "Fits seamlessly into modern office layouts",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png",
- "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg"
- ]
- },
- {
- "id": 14,
- "name": "Diamond Exec",
- "description": "Stylish executive desk with a modern, refined look. Unique triangular leg design that stands out. A perfect fit for professional and executive offices. Optional modesty panel.",
- "image": "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg",
- "alt": "Diamond Exec",
- "category": "executive-desks",
- "images": [
- "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg",
- "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-4.jpg",
- "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-5.jpg",
- "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK-1.jpg"
- ],
- "descriptionLong": [
- "Diamond Exec is a stylish executive desk with a modern, refined look. It features a unique triangular leg design that stands out in professional settings.",
- "A perfect fit for executive offices, with an optional modesty panel available."
- ],
- "additionalInformation": {
- "Material": "Premium worktop, distinct triangular leg frame",
- "Design": "Modern, refined executive look",
- "Leg Profile": "Unique triangular leg design",
- "Modesty Panel": "Optional modesty panel",
- "Use Cases": "Professional and executive offices",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-7.jpg",
- "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK.jpg"
- ]
- },
- {
- "id": 15,
- "name": "Classical",
- "description": "Timeless design with a modern executive feel, ideal for conference rooms, boardrooms, and visitor areas. Features choice of black base or chrome base with upholstered seat and back for lasting comfort.",
- "image": "assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg",
- "alt": "Classical",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg",
- "assets/images/products/categories/conference-chairs/classical/Classical-Chr_Whte-HB-02a.jpg",
- "assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-02.jpg",
- "assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-04.jpg"
- ],
- "descriptionLong": [
- "The Classical conference chair embodies timeless design with a modern executive feel, creating the perfect balance between traditional elegance and contemporary sophistication. This distinguished chair is ideal for conference rooms, boardrooms, and visitor areas, making a powerful statement in any professional environment.",
- "Featuring a choice of black base or chrome base, the Classical chair offers flexibility to match your office aesthetic and design preferences. The chrome base provides a sleek, modern appearance, while the black base offers a more traditional, executive look that complements any professional setting.",
- "Upholstered seat and back ensure lasting comfort during extended meetings and important discussions. The premium upholstery provides exceptional support and durability, while the timeless design ensures this chair remains a valuable asset in your office for years to come."
- ],
- "additionalInformation": {
- "Material": "Upholstered seat and back, premium frame construction",
- "Design": "Timeless design with modern executive feel",
- "Base Options": "Choice of black base or chrome base",
- "Use Cases": "Ideal for conference rooms, boardrooms, and visitor areas",
- "Comfort Features": "Upholstered seat and back for lasting comfort",
- "Executive Appeal": "Perfect balance between traditional elegance and contemporary sophistication",
- "Professional Setting": "Makes powerful statement in any professional environment",
- "Flexibility": "Offers flexibility to match office aesthetic and design preferences",
- "Chrome Base": "Chrome base provides sleek, modern appearance",
- "Black Base": "Black base offers traditional, executive look",
- "Durability": "Premium upholstery provides exceptional support and durability",
- "Longevity": "Timeless design ensures valuable asset for years to come",
- "Meeting Comfort": "Ensures lasting comfort during extended meetings and discussions",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-05.jpg",
- "assets/images/products/categories/conference-chairs/classical/Classical-HB-Tan-New-02.jpg",
- "assets/images/products/categories/conference-chairs/classical/Seating_Classical_Black_Gallery_05_600x600px.webp",
- "assets/images/products/categories/conference-chairs/classical/Seating_Classical_Grey_Black_Gallery_01_600x600px.webp"
- ]
- },
- {
- "id": 16,
- "name": "Messi",
- "description": "Minimalist, modern style conference chair perfect for meeting rooms and workspace. Features height adjustment lever built into the chair shell for a clean look, perfectly suited for meeting rooms, boardrooms, and conference spaces.",
- "image": "assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg",
- "alt": "Messi",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg",
- "assets/images/products/categories/conference-chairs/messi/MESSI-4.jpg",
- "assets/images/products/categories/conference-chairs/messi/MESSI-5.jpg",
- "assets/images/products/categories/conference-chairs/messi/MESSI-6.jpg"
- ],
- "descriptionLong": [
- "The Messi conference chair embodies minimalist, modern style that's perfect for meeting rooms and workspace environments. This sophisticated chair combines clean aesthetics with exceptional functionality, creating an ideal seating solution for contemporary professional settings.",
- "Featuring a height adjustment lever built into the chair shell for a clean look, the Messi chair maintains its sleek, uncluttered appearance while providing essential ergonomic functionality. The integrated adjustment mechanism ensures easy height customization without compromising the chair's minimalist design aesthetic.",
- "Perfectly suited for meeting rooms, boardrooms, and conference spaces, the Messi chair delivers the perfect balance of style and comfort. The minimalist approach creates a professional atmosphere while the modern design ensures this chair remains a timeless addition to any contemporary workspace."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Minimalist, modern style perfect for meeting rooms and workspace",
- "Height Adjustment": "Height adjustment lever built into the chair shell for a clean look",
- "Use Cases": "Perfectly suited for meeting rooms, boardrooms, and conference spaces",
- "Aesthetic Appeal": "Combines clean aesthetics with exceptional functionality",
- "Ergonomic Features": "Integrated adjustment mechanism ensures easy height customization",
- "Design Philosophy": "Maintains sleek, uncluttered appearance without compromising functionality",
- "Professional Setting": "Creates ideal seating solution for contemporary professional settings",
- "Minimalist Approach": "Creates professional atmosphere with clean, uncluttered design",
- "Modern Design": "Ensures timeless addition to any contemporary workspace",
- "Functionality": "Provides essential ergonomic functionality with integrated controls",
- "Versatility": "Perfect balance of style and comfort for various professional environments",
- "Clean Look": "Height adjustment lever integrated into chair shell maintains clean aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/messi/MESSI-7.jpg",
- "assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg"
- ]
- },
- {
- "id": 17,
- "name": "Alya",
- "description": "Comfortable conference chair with supportive cushioning. Designed for conference rooms, boardrooms, and executive settings. Offered in low, medium, or high back versions.",
- "image": "assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp",
- "alt": "Alya",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp",
- "assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-bu1489-andreu-world_2.webp",
- "assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_2_1.webp",
- "assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_3_1.webp"
- ],
- "descriptionLong": [
- "The Alya conference chair features a comfortable seat with supportive cushioning that ensures exceptional comfort during extended meetings and conferences. This sophisticated chair is specifically designed for conference rooms, boardrooms, and executive settings, providing the perfect balance of comfort and professional aesthetics.",
- "Available in low, medium, or high back versions, the Alya chair offers flexibility to meet diverse seating requirements and user preferences. Whether you need a low back chair for open collaborative spaces, a medium back for standard conference rooms, or a high back for executive boardrooms, the Alya adapts to your specific environment and comfort needs.",
- "The supportive cushioning system of the Alya chair provides superior comfort and ergonomic support, making it ideal for long meetings and executive sessions. The carefully designed cushioning ensures proper spinal alignment and reduces fatigue, while the professional styling maintains an impressive presence in any corporate or executive setting."
- ],
- "additionalInformation": {
- "Material": "Premium leather, aluminum base",
- "Design": "Comfortable seat with supportive cushioning",
- "Comfort Features": "Comfortable seat with supportive cushioning for exceptional comfort",
- "Target Settings": "Designed for conference rooms, boardrooms, and executive settings",
- "Back Options": "Offered in low, medium, or high back versions",
- "Flexibility": "Offers flexibility to meet diverse seating requirements and user preferences",
- "Low Back Version": "Perfect for open collaborative spaces",
- "Medium Back Version": "Ideal for standard conference rooms",
- "High Back Version": "Excellent for executive boardrooms",
- "Adaptability": "Adapts to specific environment and comfort needs",
- "Supportive Cushioning": "Supportive cushioning system provides superior comfort and ergonomic support",
- "Long Meeting Comfort": "Ideal for long meetings and executive sessions",
- "Spinal Alignment": "Carefully designed cushioning ensures proper spinal alignment",
- "Fatigue Reduction": "Reduces fatigue during extended use",
- "Professional Styling": "Professional styling maintains impressive presence in any corporate or executive setting",
- "Ergonomic Support": "Provides superior comfort and ergonomic support",
- "Executive Sessions": "Perfect for executive sessions and important meetings",
- "Corporate Setting": "Maintains impressive presence in any corporate or executive setting",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_1 (1).webp",
- "assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_2 (1).webp"
- ]
- },
- {
- "id": 18,
- "name": "Unique Swivel",
- "description": "Conference chair that combines modern simplicity with elegant style. Features a refined look that leaves a lasting impression, versatile for both meeting rooms and visitors seating.",
- "image": "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg",
- "alt": "Unique Swivel",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg",
- "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-03.webp",
- "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg",
- "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg"
- ],
- "descriptionLong": [
- "The Unique Swivel conference chair masterfully combines modern simplicity with elegant style, creating a sophisticated seating solution that enhances any professional environment. This distinguished chair features a refined look that leaves a lasting impression, making it the perfect choice for spaces where aesthetics and functionality are equally important.",
- "Versatile for both meeting rooms and visitors seating, the Unique Swivel chair adapts seamlessly to various professional settings. Whether used in formal conference environments or welcoming reception areas, this chair maintains its elegant appeal while providing exceptional comfort and functionality for all users.",
- "The refined design philosophy of the Unique Swivel chair ensures it remains a timeless addition to any workspace. Its modern simplicity paired with elegant style creates an atmosphere of sophistication and professionalism, making every interaction more memorable and every space more inviting."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Combines modern simplicity with elegant style",
- "Aesthetic Appeal": "Refined look that leaves a lasting impression",
- "Versatility": "Versatile for both meeting rooms and visitors seating",
- "Design Philosophy": "Masterfully combines modern simplicity with elegant style",
- "Professional Enhancement": "Creates sophisticated seating solution that enhances any professional environment",
- "Lasting Impression": "Distinguished chair features refined look that leaves lasting impression",
- "Adaptability": "Adapts seamlessly to various professional settings",
- "Meeting Room Use": "Perfect for formal conference environments",
- "Visitor Seating": "Ideal for welcoming reception areas",
- "Elegant Appeal": "Maintains elegant appeal while providing exceptional comfort and functionality",
- "Timeless Design": "Refined design philosophy ensures timeless addition to any workspace",
- "Atmosphere Creation": "Creates atmosphere of sophistication and professionalism",
- "Memorable Interactions": "Makes every interaction more memorable and every space more inviting",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg",
- "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg"
- ]
- },
- {
- "id": 19,
- "name": "Chico Swivel",
- "description": "Modern design conference chair with a gently curved backrest. Features standard fabric in emerald green, fawn brown and grey. Comfortable design that suits both formal and casual spaces.",
- "image": "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg",
- "alt": "Chico Swivel",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg",
- "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-04.jpg",
- "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-05.jpg",
- "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-01.jpg"
- ],
- "descriptionLong": [
- "The Chico Swivel conference chair features a modern design with a gently curved backrest that provides exceptional comfort and visual appeal. This sophisticated chair combines contemporary aesthetics with superior functionality, making it the perfect choice for professional environments that demand both style and comfort.",
- "Available in standard fabric with three elegant color options - emerald green, fawn brown, and grey - the Chico Swivel chair offers versatility to match any interior design scheme. The carefully selected color palette ensures this chair seamlessly integrates into various professional settings while maintaining its distinctive modern character.",
- "The comfortable design of the Chico Swivel chair makes it perfectly suited for both formal and casual spaces. Whether used in executive boardrooms, conference rooms, or welcoming reception areas, this chair provides exceptional comfort and support while maintaining its elegant, professional appearance throughout extended use."
- ],
- "additionalInformation": {
- "Material": "Standard fabric, aluminum base",
- "Design": "Modern design with a gently curved backrest",
- "Backrest Design": "Gently curved backrest for exceptional comfort and visual appeal",
- "Fabric Options": "Standard fabric in emerald green, fawn brown and grey",
- "Color Palette": "Three elegant color options - emerald green, fawn brown, and grey",
- "Versatility": "Versatile to match any interior design scheme",
- "Professional Integration": "Seamlessly integrates into various professional settings",
- "Modern Character": "Maintains distinctive modern character",
- "Comfortable Design": "Comfortable design that suits both formal and casual spaces",
- "Formal Spaces": "Perfect for executive boardrooms and conference rooms",
- "Casual Spaces": "Ideal for welcoming reception areas",
- "Comfort and Support": "Provides exceptional comfort and support",
- "Professional Appearance": "Maintains elegant, professional appearance throughout extended use",
- "Contemporary Aesthetics": "Combines contemporary aesthetics with superior functionality",
- "Style and Comfort": "Perfect choice for professional environments that demand both style and comfort",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-02.jpg",
- "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-02.jpg"
- ]
- },
- {
- "id": 20,
- "name": "Flex",
- "description": "Professional conference chair with Flex design. Perfect for meeting rooms and conference environments requiring comfort and style.",
- "image": "assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp",
- "alt": "Flex",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp",
- "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1844_armchair_1.webp",
- "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1845_armchair_1.webp",
- "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp"
- ],
- "descriptionLong": [
- "Experience professional comfort with our Flex conference chair. This sophisticated chair combines elegant design with superior functionality, perfect for meeting rooms and conference environments.",
- "The Flex chair features premium materials, flexible design, and ergonomic elements. The professional construction and refined finish create an impressive presence while providing exceptional comfort for extended meetings and conferences."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Professional conference aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1860_armchair_1.webp",
- "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1861_armchair_1.webp",
- "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp"
- ]
- },
- {
- "id": 21,
- "name": "Cappa",
- "description": "Contemporary conference chair with smooth, curved edge design. Features comfortable seat for meeting and conference use, wide choice of finishes and colors, versatile for offices, conference rooms, and collaborative spaces.",
- "image": "assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp",
- "alt": "Cappa",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp",
- "assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp",
- "assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_WHITE.webp",
- "assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_FLAT.webp"
- ],
- "descriptionLong": [
- "The Cappa conference chair delivers contemporary comfort with its smooth, curved edge design. This sophisticated chair combines modern aesthetics with exceptional functionality, creating the perfect seating solution for meeting rooms, conference environments, and collaborative spaces.",
- "Featuring a comfortable seat specifically designed for meeting and conference use, the Cappa chair ensures optimal comfort during extended discussions and presentations. The ergonomic design promotes proper posture and reduces fatigue, making it ideal for long meetings and collaborative work sessions.",
- "Available with a wide choice of finishes and colors, the Cappa chair offers versatility to match any office aesthetic or brand identity. Whether used in formal conference rooms, modern offices, or collaborative spaces, this chair seamlessly integrates into any environment while providing exceptional comfort and professional appeal."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Contemporary design with smooth, curved edge",
- "Comfort Features": "Comfortable seat for meeting and conference use",
- "Finish Options": "Wide choice of finishes and colors available",
- "Use Cases": "Versatile for offices, conference rooms, and collaborative spaces",
- "Ergonomic Design": "Promotes proper posture and reduces fatigue",
- "Meeting Focus": "Specifically designed for extended discussions and presentations",
- "Versatility": "Seamlessly integrates into any environment",
- "Professional Appeal": "Provides exceptional comfort and professional appeal",
- "Collaborative Spaces": "Ideal for long meetings and collaborative work sessions",
- "Aesthetic Integration": "Matches any office aesthetic or brand identity",
- "Modern Aesthetics": "Combines modern aesthetics with exceptional functionality",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp",
- "assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp"
- ]
- },
- {
- "id": 22,
- "name": "Kalea 4-Star",
- "description": "Kalea Swivel 4-star base conference chair in chrome or black painted finish on chrome castors. Features modern, lightweight design with sleek profile, optional seat pad or inner shell upholstered in customer's own fabric, black option available with or without arms.",
- "image": "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg",
- "alt": "Kalea 4-Star",
- "category": "conference-chairs",
- "images": [
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg",
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_22_600x600px.webp",
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_27_600x600px.jpg",
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_32_600x600px.webp"
- ],
- "descriptionLong": [
- "The Kalea Swivel 4-star base conference chair delivers exceptional versatility with its chrome or black painted finish on chrome castors. This sophisticated chair features a modern, lightweight design with a sleek profile that seamlessly integrates into any professional environment while providing superior mobility and functionality.",
- "Featuring optional seat pad or inner shell upholstered in customer's own fabric, the Kalea chair offers complete customization to match your specific design requirements and brand identity. This flexibility allows you to create a truly personalized seating solution that reflects your organization's unique aesthetic and professional standards.",
- "The black option is available with or without arms, providing additional flexibility for different meeting room configurations and user preferences. Whether you need armrests for enhanced comfort during extended meetings or prefer the clean, minimalist look of armless chairs, the Kalea adapts to your specific needs and space requirements."
- ],
- "additionalInformation": {
- "Material": "Optional seat pad or inner shell upholstered in customer's own fabric",
- "Design": "Modern, lightweight design with sleek profile",
- "Base Options": "4-star base in chrome or black painted finish on chrome castors",
- "Upholstery Options": "Optional seat pad or inner shell upholstered in customer's own fabric",
- "Arm Options": "Black option available with or without arms",
- "Customization": "Complete customization to match specific design requirements and brand identity",
- "Versatility": "Delivers exceptional versatility with multiple finish and configuration options",
- "Mobility": "Superior mobility and functionality with chrome castors",
- "Professional Integration": "Seamlessly integrates into any professional environment",
- "Flexibility": "Provides additional flexibility for different meeting room configurations",
- "Personalization": "Allows creation of truly personalized seating solution",
- "Brand Identity": "Reflects organization's unique aesthetic and professional standards",
- "User Preferences": "Adapts to specific needs and space requirements",
- "Meeting Comfort": "Enhanced comfort during extended meetings with optional armrests",
- "Minimalist Option": "Clean, minimalist look of armless chairs available",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_33_600x600px.jpg",
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_36_600x600px.webp",
- "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_37_600x600px.jpg"
- ]
- },
- {
- "id": 23,
- "name": "Glove",
- "description": "Versatile style suitable for offices, meeting rooms, and reception areas. Features comfortable curved seat for added support.",
- "image": "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp",
- "alt": "Glove",
- "category": "visitors-chair",
- "images": [
- "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp",
- "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH.webp",
- "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_GAS-PISTON_UPHOLSTERED_01.webp",
- "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_01.webp"
- ],
- "descriptionLong": [
- "The Glove visitors chair features a versatile style that is perfectly suitable for offices, meeting rooms, and reception areas. This sophisticated chair combines contemporary design with exceptional functionality, making it an ideal choice for diverse professional environments that demand both style and comfort.",
- "Featuring a comfortable curved seat for added support, the Glove chair provides exceptional comfort and ergonomic benefits for users of all sizes. The curved seat design ensures proper spinal alignment and reduces fatigue during extended seating periods, while the versatile styling adapts seamlessly to various professional settings.",
- "The versatile design of the Glove chair makes it perfect for multiple applications across different professional spaces. Whether used in formal office environments, collaborative meeting rooms, or welcoming reception areas, this chair maintains its professional appearance while delivering superior comfort and support that enhances the overall user experience."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Versatile style suitable for offices, meeting rooms, and reception areas",
- "Versatile Style": "Versatile style suitable for offices, meeting rooms, and reception areas",
- "Comfortable Seat": "Comfortable curved seat for added support",
- "Curved Seat": "Comfortable curved seat for added support",
- "Added Support": "Curved seat design ensures proper spinal alignment and reduces fatigue",
- "Target Areas": "Perfect for offices, meeting rooms, and reception areas",
- "Contemporary Design": "Combines contemporary design with exceptional functionality",
- "Professional Environments": "Ideal choice for diverse professional environments",
- "Style and Comfort": "Demands both style and comfort",
- "Ergonomic Benefits": "Provides exceptional comfort and ergonomic benefits for users of all sizes",
- "Spinal Alignment": "Curved seat design ensures proper spinal alignment",
- "Fatigue Reduction": "Reduces fatigue during extended seating periods",
- "Versatile Styling": "Versatile styling adapts seamlessly to various professional settings",
- "Multiple Applications": "Perfect for multiple applications across different professional spaces",
- "Formal Office Environments": "Perfect for formal office environments",
- "Collaborative Meeting Rooms": "Ideal for collaborative meeting rooms",
- "Welcoming Reception Areas": "Excellent for welcoming reception areas",
- "Professional Appearance": "Maintains professional appearance while delivering superior comfort and support",
- "User Experience": "Enhances the overall user experience",
- "Superior Comfort": "Delivers superior comfort and support",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH_SEATPAD.webp",
- "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_02.webp"
- ]
- },
- {
- "id": 24,
- "name": "Flexi",
- "description": "Designed to meet the needs of every user. Lightweight yet durable for durable use. Features modern design with a breathable mesh backrest and upholstered seat. Perfect for visitor seating.",
- "image": "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp",
- "alt": "Flexi",
- "category": "visitors-chair",
- "images": [
- "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp",
- "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-02.webp",
- "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-03.webp",
- "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-04.webp"
- ],
- "descriptionLong": [
- "The Flexi visitors chair is designed to meet the needs of every user, providing exceptional comfort and functionality for diverse seating requirements. This sophisticated chair features a lightweight yet durable construction that ensures long-lasting performance while maintaining easy mobility and handling.",
- "Featuring a modern design with a breathable mesh backrest and upholstered seat, the Flexi chair combines contemporary aesthetics with superior comfort. The breathable mesh backrest provides excellent ventilation and support, while the upholstered seat ensures exceptional comfort for visitors during extended seating periods.",
- "Perfect for visitor seating, the Flexi chair adapts seamlessly to various professional environments and user preferences. The combination of lightweight durability, modern design, and breathable comfort features makes this chair an ideal choice for creating comfortable and welcoming spaces that accommodate the diverse needs of all visitors and guests."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh backrest, upholstered seat, aluminum base",
- "Design": "Designed to meet the needs of every user",
- "Durability": "Lightweight yet durable for durable use",
- "Modern Design": "Modern design with a breathable mesh backrest",
- "Breathable Mesh": "Breathable mesh backrest provides excellent ventilation and support",
- "Upholstered Seat": "Upholstered seat ensures exceptional comfort for visitors",
- "Target Use": "Perfect for visitor seating",
- "User Needs": "Designed to meet the needs of every user",
- "Lightweight Construction": "Lightweight yet durable construction ensures long-lasting performance",
- "Easy Mobility": "Maintains easy mobility and handling",
- "Contemporary Aesthetics": "Combines contemporary aesthetics with superior comfort",
- "Ventilation": "Breathable mesh backrest provides excellent ventilation and support",
- "Extended Comfort": "Exceptional comfort for visitors during extended seating periods",
- "Adaptability": "Adapts seamlessly to various professional environments and user preferences",
- "Diverse Needs": "Accommodates the diverse needs of all visitors and guests",
- "Comfortable Spaces": "Ideal choice for creating comfortable and welcoming spaces",
- "Professional Environments": "Perfect for various professional environments",
- "User Preferences": "Adapts to different user preferences",
- "Long-lasting Performance": "Lightweight yet durable construction ensures long-lasting performance",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-05.webp",
- "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp"
- ]
- },
- {
- "id": 25,
- "name": "La-filo",
- "description": "Sleek sleigh frame in black or chrome finish. Available with or without armrest. Features polypropylene seat and back with optional upholstered seat and back pads (fabric choice available).",
- "image": "assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg",
- "alt": "La-filo",
- "category": "visitors-chair",
- "images": [
- "assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg",
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_07_600x600px.jpg",
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_14_600x600px.webp",
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_15_600x600px.webp"
- ],
- "descriptionLong": [
- "The La-filo visitors chair features a sleek sleigh frame available in black or chrome finish, creating a sophisticated and modern aesthetic that enhances any professional environment. This elegant chair combines contemporary design with exceptional functionality, making it perfect for reception areas, meeting rooms, and executive spaces.",
- "Available with or without armrest, the La-filo chair offers flexibility to meet diverse seating requirements and user preferences. The polypropylene seat and back provide durability and easy maintenance, while the optional upholstered seat and back pads allow for complete customization with fabric choice available to match your specific design requirements.",
- "The sleek sleigh frame design of the La-filo chair creates a distinctive silhouette that adds elegance and sophistication to any space. Whether you choose the black or chrome finish, with or without armrests, and with optional upholstered pads, this chair delivers exceptional comfort and style that makes a lasting impression on visitors and guests."
- ],
- "additionalInformation": {
- "Material": "Polypropylene seat and back, sleek sleigh frame",
- "Design": "Sleek sleigh frame in black or chrome finish",
- "Frame Options": "Sleek sleigh frame in black or chrome finish",
- "Armrest Options": "Available with or without armrest",
- "Seat Material": "Polypropylene seat and back",
- "Upholstery Options": "Optional upholstered seat and back pads (fabric choice available)",
- "Finish Options": "Black or chrome finish available",
- "Flexibility": "Offers flexibility to meet diverse seating requirements and user preferences",
- "Durability": "Polypropylene seat and back provide durability and easy maintenance",
- "Customization": "Optional upholstered seat and back pads allow for complete customization",
- "Fabric Choice": "Fabric choice available to match your specific design requirements",
- "Sophisticated Aesthetic": "Creates a sophisticated and modern aesthetic that enhances any professional environment",
- "Contemporary Design": "Combines contemporary design with exceptional functionality",
- "Target Areas": "Perfect for reception areas, meeting rooms, and executive spaces",
- "Distinctive Silhouette": "Creates a distinctive silhouette that adds elegance and sophistication",
- "Elegance and Sophistication": "Adds elegance and sophistication to any space",
- "Lasting Impression": "Makes a lasting impression on visitors and guests",
- "Exceptional Comfort": "Delivers exceptional comfort and style",
- "Professional Environment": "Enhances any professional environment",
- "Easy Maintenance": "Polypropylene provides easy maintenance",
- "Complete Customization": "Allows for complete customization with fabric choice",
- "Design Requirements": "Matches your specific design requirements",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_17_600x600px.jpg",
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_20_600x600px.jpg",
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_21_600x600px.webp",
- "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_26_600x600px.jpg"
- ]
- },
- {
- "id": 26,
- "name": "Plural",
- "description": "Contemporary design that adds style to any workspace. Features optional armrests for extra comfort. Available in a range of color options to match your setting.",
- "image": "assets/images/products/categories/visitors-chair/plural/plural (1).webp",
- "alt": "Plural",
- "category": "visitors-chair",
- "images": [
- "assets/images/products/categories/visitors-chair/plural/plural (1).webp",
- "assets/images/products/categories/visitors-chair/plural/plural (7).webp",
- "assets/images/products/categories/visitors-chair/plural/plural (8).webp",
- "assets/images/products/categories/visitors-chair/plural/plural (9).webp"
- ],
- "descriptionLong": [
- "The Plural visitors chair features a contemporary design that adds style to any workspace, creating a modern and sophisticated atmosphere that enhances professional environments. This elegant chair combines contemporary aesthetics with exceptional functionality, making it perfect for reception areas, meeting rooms, and office spaces.",
- "Featuring optional armrests for extra comfort, the Plural chair provides flexibility to meet diverse seating requirements and user preferences. The contemporary design ensures this chair seamlessly integrates into various professional settings while maintaining its distinctive modern character and style.",
- "Available in a range of color options to match your setting, the Plural chair offers complete customization to complement your interior design scheme and brand identity. Whether you need a chair with or without armrests, and in colors that match your specific requirements, this chair delivers exceptional comfort and contemporary style that makes a lasting impression on visitors and guests."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Contemporary design that adds style to any workspace",
- "Contemporary Design": "Contemporary design that adds style to any workspace",
- "Style Enhancement": "Adds style to any workspace",
- "Optional Armrests": "Optional armrests for extra comfort",
- "Extra Comfort": "Optional armrests for extra comfort",
- "Range of Colors": "Available in a range of color options to match your setting",
- "Setting Match": "Color options to match your setting",
- "Modern Atmosphere": "Creates a modern and sophisticated atmosphere that enhances professional environments",
- "Contemporary Aesthetics": "Combines contemporary aesthetics with exceptional functionality",
- "Target Areas": "Perfect for reception areas, meeting rooms, and office spaces",
- "Flexibility": "Provides flexibility to meet diverse seating requirements and user preferences",
- "Professional Integration": "Seamlessly integrates into various professional settings",
- "Distinctive Character": "Maintains its distinctive modern character and style",
- "Complete Customization": "Offers complete customization to complement your interior design scheme and brand identity",
- "Interior Design": "Complements your interior design scheme and brand identity",
- "Brand Identity": "Matches your brand identity",
- "Armrest Options": "Available with or without armrests",
- "Color Matching": "Colors that match your specific requirements",
- "Exceptional Comfort": "Delivers exceptional comfort and contemporary style",
- "Contemporary Style": "Contemporary style that makes a lasting impression",
- "Lasting Impression": "Makes a lasting impression on visitors and guests",
- "Professional Environments": "Enhances professional environments",
- "Modern Character": "Maintains distinctive modern character and style",
- "Workspace Enhancement": "Adds style to any workspace",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/visitors-chair/plural/plural (10).webp",
- "assets/images/products/categories/visitors-chair/plural/plural (21).webp"
- ]
- },
- {
- "id": 27,
- "name": "Chico",
- "description": "A stylish blend of comfort and practicality. Features cozy molded foam shell with soft upholstery and sturdy 4-legged base for everyday use. Perfect for seating, lobbies, receptions, and meeting areas.",
- "image": "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg",
- "alt": "Chico",
- "category": "visitors-chair",
- "images": [
- "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg",
- "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-01.jpg",
- "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-04.jpg",
- "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-03.jpg"
- ],
- "descriptionLong": [
- "The Chico visitors chair represents a stylish blend of comfort and practicality, designed to meet the diverse needs of modern professional environments. This sophisticated chair features a cozy molded foam shell with soft upholstery that provides exceptional comfort and support for visitors and guests.",
- "Built with a sturdy 4-legged base for everyday use, the Chico chair ensures reliable stability and durability in high-traffic areas. The combination of the cozy molded foam shell and soft upholstery creates a welcoming seating experience that makes visitors feel comfortable and valued during their stay.",
- "Perfect for seating, lobbies, receptions, and meeting areas, the Chico chair adapts seamlessly to various professional settings. The stylish design aesthetic combined with practical functionality makes this chair an ideal choice for creating inviting and comfortable spaces that reflect your organization's commitment to visitor comfort and professional presentation."
- ],
- "additionalInformation": {
- "Material": "Cozy molded foam shell with soft upholstery, sturdy 4-legged base",
- "Design": "A stylish blend of comfort and practicality",
- "Comfort Features": "Cozy molded foam shell with soft upholstery",
- "Base Design": "Sturdy 4-legged base for everyday use",
- "Target Areas": "Perfect for seating, lobbies, receptions, and meeting areas",
- "Stylish Blend": "A stylish blend of comfort and practicality",
- "Molded Foam Shell": "Cozy molded foam shell with soft upholstery",
- "Soft Upholstery": "Soft upholstery provides exceptional comfort and support",
- "Sturdy Base": "Sturdy 4-legged base ensures reliable stability and durability",
- "Everyday Use": "Built for everyday use in high-traffic areas",
- "Professional Environments": "Designed to meet the diverse needs of modern professional environments",
- "Visitor Comfort": "Makes visitors feel comfortable and valued during their stay",
- "Welcoming Experience": "Creates a welcoming seating experience",
- "Adaptability": "Adapts seamlessly to various professional settings",
- "Stylish Design": "Stylish design aesthetic combined with practical functionality",
- "Inviting Spaces": "Ideal choice for creating inviting and comfortable spaces",
- "Professional Presentation": "Reflects organization's commitment to visitor comfort and professional presentation",
- "High-traffic Areas": "Reliable stability and durability in high-traffic areas",
- "Comfort and Support": "Provides exceptional comfort and support for visitors and guests",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-04.jpg",
- "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-05.jpg"
- ]
- },
- {
- "id": 28,
- "name": "Cappa",
- "description": "Lightweight yet durable visitors chair for everyday use. Perfect for visitor areas, receptions, and meeting rooms. Features sleek, modern design with a comfortable seat.",
- "image": "assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp",
- "alt": "Cappa",
- "category": "visitors-chair",
- "images": [
- "assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp",
- "assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp",
- "assets/images/products/categories/visitors-chair/cappa/CAPPA_BASE_SLED_WHITE.webp"
- ],
- "descriptionLong": [
- "The Cappa visitors chair combines lightweight construction with exceptional durability, making it perfect for everyday use in busy professional environments. This sophisticated chair features a sleek, modern design with a comfortable seat that ensures visitors feel welcome and comfortable during their stay.",
- "Perfect for visitor areas, receptions, and meeting rooms, the Cappa chair adapts seamlessly to various professional settings. The lightweight yet durable construction ensures easy mobility and long-lasting performance, while the modern design aesthetic enhances any workspace environment.",
- "The comfortable seat design of the Cappa chair provides exceptional support and comfort for visitors of all ages and sizes. Whether used in formal reception areas, casual meeting rooms, or high-traffic visitor zones, this chair maintains its professional appearance while delivering superior comfort and functionality."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Lightweight yet durable for everyday use",
- "Durability": "Lightweight yet durable for everyday use",
- "Target Areas": "Perfect for visitor areas, receptions, and meeting rooms",
- "Design Aesthetic": "Sleek, modern design with a comfortable seat",
- "Everyday Use": "Perfect for everyday use in busy professional environments",
- "Lightweight Construction": "Lightweight construction with exceptional durability",
- "Professional Environments": "Perfect for everyday use in busy professional environments",
- "Comfortable Seat": "Sleek, modern design with a comfortable seat",
- "Visitor Comfort": "Ensures visitors feel welcome and comfortable during their stay",
- "Adaptability": "Adapts seamlessly to various professional settings",
- "Easy Mobility": "Lightweight yet durable construction ensures easy mobility",
- "Long-lasting Performance": "Long-lasting performance with modern design aesthetic",
- "Workspace Enhancement": "Modern design aesthetic enhances any workspace environment",
- "Support and Comfort": "Provides exceptional support and comfort for visitors of all ages and sizes",
- "Professional Appearance": "Maintains professional appearance while delivering superior comfort and functionality",
- "Versatile Use": "Whether used in formal reception areas, casual meeting rooms, or high-traffic visitor zones",
- "Superior Functionality": "Delivers superior comfort and functionality",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp",
- "assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp"
- ]
- },
- {
- "id": 29,
- "name": "Breeze",
- "description": "Minimal and elegant sofa with a balance of straight lines and soft curves. Strong iron frame for lasting durability with a modern touch. Available as a single or triple seater. Ideal for offices, lounges, and reception areas.",
- "image": "assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg",
- "alt": "Breeze",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg",
- "assets/images/products/categories/soft-seating/breeze/BREEZE-3-1.jpg",
- "assets/images/products/categories/soft-seating/breeze/BREEZE-4-1.jpg",
- "assets/images/products/categories/soft-seating/breeze/BREEZE-9.jpg"
- ],
- "descriptionLong": [
- "Breeze is a minimal and elegant sofa balancing straight lines with soft curves for a refined look.",
- "A strong iron frame ensures lasting durability while adding a modern touch to any space.",
- "Available as a single or triple seater, Breeze is ideal for offices, lounges, and reception areas."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, strong iron frame",
- "Design": "Minimal and elegant with balanced lines and curves",
- "Variants": "Single or triple seater",
- "Use Cases": "Ideal for offices, lounges, and reception areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/breeze/Breeze-Grey-01.jpg",
- "assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02.jpg",
- "assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02-2-768x768.jpg",
- "assets/images/products/categories/soft-seating/breeze/Breeze.jpg"
- ]
- },
- {
- "id": 30,
- "name": "Bow Lounge",
- "description": "Contemporary lounge seating with a welcoming, curved design. Perfect for lounges, reception areas, and collaborative corners. Available in different colors.",
- "image": "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg",
- "alt": "Bow Lounge",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg",
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_039.jpg",
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_040.jpg",
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_042.jpg"
- ],
- "descriptionLong": [
- "Bow Lounge delivers contemporary lounge seating with a welcoming, curved design that invites relaxation.",
- "It’s perfect for lounges, reception areas, and collaborative corners where comfort and style matter.",
- "Offered in different colors to complement a variety of settings and palettes."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, sturdy frame",
- "Design": "Contemporary with welcoming, curved form",
- "Target Areas": "Lounges, reception areas, collaborative corners",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_054.jpg",
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg",
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_055.jpg",
- "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_064.jpg"
- ]
- },
- {
- "id": 31,
- "name": "Pausa",
- "description": "Calm and inviting sofa design that creates a relaxing atmosphere. Versatile for offices, lounges, and reception areas. Available in single, two seater, or three seater options.",
- "image": "assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg",
- "alt": "Pausa",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_014.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_023.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_049.jpg"
- ],
- "descriptionLong": [
- "Pausa offers a calm and inviting sofa design that sets a relaxing tone in shared spaces. A versatile choice for offices, lounges, and reception areas, balancing comfort and clean lines.",
- "Available as a single, two seater, or three seater to suit different needs."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, durable frame",
- "Design": "Calm and inviting",
- "Variants": "Single, two seater, three seater",
- "Use Cases": "Offices, lounges, reception areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/pausa/PAUSA_050.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_052.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_053.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_054.jpg",
- "assets/images/products/categories/soft-seating/pausa/PAUSA_059.jpg"
- ]
- },
- {
- "id": 32,
- "name": "Amivera",
- "description": "Upholstered for comfort with clean, structured lines. Available in a variety of colors to suit any interior. Perfect for lounges, waiting areas, offices, or collaborative spaces. Modern and minimalist sofa design for versatile spaces.",
- "image": "assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg",
- "alt": "Amivera",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg",
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_009.jpg",
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_011.jpg",
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_013.jpg"
- ],
- "descriptionLong": [
- "Amivera combines comfortable upholstery with clean, structured lines to elevate modern interiors. The form is crisp yet welcoming, bringing quiet confidence to shared spaces.",
- "Offered in a variety of colors, it fits lounges, waiting areas, offices, and collaborative spaces. The minimalist language adapts easily, keeping spaces coherent as needs change."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, structured frame",
- "Design": "Upholstered with clean, structured lines",
- "Use Cases": "Lounges, waiting areas, offices, collaborative spaces",
- "Style": "Modern and minimalist",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_019.jpg",
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_028.jpg",
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_099.jpg",
- "assets/images/products/categories/soft-seating/amivera/AMIVERA_103.jpg",
- "assets/images/products/categories/soft-seating/amivera/Amivera_gallery_sofas-tables-office.jpg"
- ]
- },
- {
- "id": 33,
- "name": "Cyl",
- "description": "Encourages gathering and interaction in shared spaces. Available in different colors for creative environments. Lightweight pouf that adds warmth and flexibility to any setting.",
- "image": "assets/images/products/categories/soft-seating/cyl/CYL_004.jpg",
- "alt": "Cyl",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/cyl/CYL_004.jpg",
- "assets/images/products/categories/soft-seating/cyl/CYL_019.jpg",
- "assets/images/products/categories/soft-seating/cyl/CYL_028.jpg",
- "assets/images/products/categories/soft-seating/cyl/CYL_029.jpg"
- ],
- "descriptionLong": [
- "Cyl encourages gathering and interaction in shared spaces as a lightweight, versatile pouf. Available in different colors to suit creative environments and add warmth.",
- "Its lightweight build adds flexibility and warmth to any setting, from lounges to collaboration zones."
- ],
- "additionalInformation": {
- "Material": "Durable upholstery, lightweight core",
- "Design": "Lightweight pouf for shared spaces",
- "Use Case": "Encourages gathering and interaction",
- "Flexibility": "Adds warmth and flexibility to any setting",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/cyl/CYL_030.jpg",
- "assets/images/products/categories/soft-seating/cyl/CYL_033.jpg"
- ]
- },
- {
- "id": 34,
- "name": "Hopscotch",
- "description": "Playful upholstered ottoman designed for casual and collaborative spaces. Lightweight and easy to move—ideal for modern lounges and reception areas.",
- "image": "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg",
- "alt": "Hopscotch",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg",
- "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-3-1.jpg",
- "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-4-1.jpg",
- "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-5.jpg"
- ],
- "descriptionLong": [
- "Hopscotch is a playful upholstered ottoman for casual and collaborative spaces. Lightweight and easy to move, it adapts quickly to modern lounges and reception areas.",
- "A simple, versatile piece that adds comfort and personality to shared spaces."
- ],
- "additionalInformation": {
- "Material": "Upholstered body, lightweight structure",
- "Design": "Playful ottoman for casual and collaborative spaces",
- "Mobility": "Lightweight and easy to move",
- "Use Cases": "Modern lounges and reception areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-SCENE-1.jpg",
- "assets/images/products/categories/soft-seating/hopscotch/HopScotch.jpg"
- ]
- },
- {
- "id": 35,
- "name": "Marina",
- "description": "Contemporary lounge seating with a refined and formal touch. Soft, comfortable seat framed by a gently angled backrest. Wide choice of colors and finishes. Available in single or two seater option.",
- "image": "assets/images/products/categories/soft-seating/marina/MARINA_001.jpg",
- "alt": "Marina",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/marina/MARINA_001.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_007.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_009.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_011.jpg"
- ],
- "descriptionLong": [
- "Marina offers contemporary lounge seating with a refined, formal touch. A soft, comfortable seat is framed by a gently angled backrest for support.",
- "Choose from a wide range of colors and finishes; available as a single or two seater."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, supportive frame",
- "Design": "Refined and formal lounge seating",
- "Comfort": "Soft seat with gently angled backrest",
- "Options": "Single or two seater",
- "Colors & Finishes": "Wide choice to suit interiors",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/marina/MARINA_013.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_014.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_015.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_016.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_017.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_036.jpg",
- "assets/images/products/categories/soft-seating/marina/MARINA_048.jpg",
- "assets/images/products/categories/soft-seating/marina/230130157517-2.jpg"
- ]
- },
- {
- "id": 36,
- "name": "Meet Me",
- "description": "Modular seating system designed for flexibility and collaboration. Can be arranged in different layouts to fit any space. Ideal for lounges and reception areas.",
- "image": "assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg",
- "alt": "Meet Me",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg",
- "assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg",
- "assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me02-768x375.jpg"
- ],
- "descriptionLong": [
- "Meet Me is a modular seating system designed for flexible layouts and collaboration. It can be arranged in different configurations to fit any space and purpose.",
- "Ideal for lounges and reception areas that need adaptable, comfortable seating."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, modular components",
- "Design": "Modular for flexibility and collaboration",
- "Layouts": "Arrange in different configurations",
- "Use Cases": "Lounges and reception areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg",
- "assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg"
- ]
- },
- {
- "id": 37,
- "name": "Envy",
- "description": "Premium soft seating with Envy design. Perfect for luxury lounge areas and high-end spaces with exclusive comfort.",
- "image": "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg",
- "alt": "Envy",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-back.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-front-sml-600x600.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-angled-300x300.jpg"
- ],
- "descriptionLong": [
- "Indulge in exclusive luxury with our Envy soft seating. This premium piece combines luxury design with exceptional comfort, perfect for high-end lounge areas and exclusive spaces.",
- "The Envy features premium materials, luxury design, and exclusive styling. The sophisticated construction and refined finish create an impressive atmosphere while providing exceptional comfort for luxury relaxation and exclusive meetings."
- ],
- "additionalInformation": {
- "Material": "Premium leather, aluminum base",
- "Design": "Luxury exclusive aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-back-300x300.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-300x300.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-migraton-indigo-front-ml.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-600x600.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-back-300x300.jpg",
- "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-front-sml-300x300.jpg"
- ]
- },
- {
- "id": 38,
- "name": "Bow Chair",
- "description": "Elegant chair with a distinctive curved backrest for extra comfort. Available in wooden or swivel base. Versatile for lounges, offices, and waiting areas. Offered in a wide range of colors.",
- "image": "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg",
- "alt": "Bow Chair",
- "category": "soft-seating",
- "images": [
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_002.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_011.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_015.jpg"
- ],
- "descriptionLong": [
- "Bow Chair is an elegant chair with a distinctive curved backrest for extra comfort. Choose a wooden or swivel base to suit different settings and uses.",
- "Versatile for lounges, offices, and waiting areas, and offered in a wide range of colors."
- ],
- "additionalInformation": {
- "Material": "Premium upholstery, wooden or swivel base",
- "Design": "Elegant with distinctive curved backrest",
- "Base Options": "Wooden or swivel base",
- "Use Cases": "Lounges, offices, waiting areas",
- "Color Range": "Offered in a wide range of colors",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_035.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_036.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_043.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_050.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_056.jpg",
- "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_057.jpg"
- ]
- },
- {
- "id": 39,
- "name": "Smile",
- "description": "Solid beech wood frame for durability. Crafted with an oak board seat. Available upholstered seat for extra comfort. Strong yet lightweight build. Spindle backrest with timeless design.",
- "image": "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp",
- "alt": "Smile",
- "category": "barstools",
- "images": [
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp",
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_3.webp",
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_4.webp",
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_5.webp"
- ],
- "descriptionLong": [
- "The Smile barstool features a solid beech wood frame for exceptional durability, ensuring long-lasting performance and reliable stability in any environment. Crafted with an oak board seat, this barstool combines natural wood beauty with superior craftsmanship, creating a sophisticated and timeless aesthetic that enhances any space.",
- "Available with an upholstered seat for extra comfort, the Smile barstool provides flexibility to meet diverse seating requirements and user preferences. The strong yet lightweight build ensures easy mobility and handling while maintaining exceptional durability, making this barstool perfect for both stationary and dynamic seating arrangements.",
- "Featuring a spindle backrest with timeless design, the Smile barstool creates a classic and elegant silhouette that never goes out of style. The combination of solid beech wood construction, oak board seating, optional upholstery, and timeless spindle design makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that stand the test of time."
- ],
- "additionalInformation": {
- "Material": "Solid beech wood frame, oak board seat",
- "Design": "Solid beech wood frame for durability",
- "Beech Wood Frame": "Solid beech wood frame for durability",
- "Durability": "Solid beech wood frame for exceptional durability, ensuring long-lasting performance and reliable stability",
- "Long-lasting Performance": "Long-lasting performance and reliable stability in any environment",
- "Reliable Stability": "Reliable stability in any environment",
- "Oak Board Seat": "Crafted with an oak board seat",
- "Natural Wood Beauty": "Combines natural wood beauty with superior craftsmanship",
- "Superior Craftsmanship": "Natural wood beauty with superior craftsmanship",
- "Sophisticated Aesthetic": "Creates a sophisticated and timeless aesthetic that enhances any space",
- "Timeless Aesthetic": "Timeless aesthetic that enhances any space",
- "Upholstered Seat": "Available upholstered seat for extra comfort",
- "Extra Comfort": "Available upholstered seat for extra comfort",
- "Seating Flexibility": "Provides flexibility to meet diverse seating requirements and user preferences",
- "User Preferences": "Meets diverse seating requirements and user preferences",
- "Strong Build": "Strong yet lightweight build",
- "Lightweight Build": "Strong yet lightweight build",
- "Easy Mobility": "Ensures easy mobility and handling while maintaining exceptional durability",
- "Easy Handling": "Easy mobility and handling",
- "Exceptional Durability": "Maintaining exceptional durability",
- "Stationary Seating": "Perfect for stationary seating arrangements",
- "Dynamic Seating": "Perfect for dynamic seating arrangements",
- "Spindle Backrest": "Spindle backrest with timeless design",
- "Timeless Design": "Spindle backrest with timeless design",
- "Classic Silhouette": "Creates a classic and elegant silhouette that never goes out of style",
- "Elegant Silhouette": "Classic and elegant silhouette",
- "Never Goes Out of Style": "Never goes out of style",
- "Beech Wood Construction": "Solid beech wood construction",
- "Oak Board Seating": "Oak board seating",
- "Optional Upholstery": "Optional upholstery",
- "Timeless Spindle Design": "Timeless spindle design",
- "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
- "Stand the Test of Time": "Seating arrangements that stand the test of time",
- "Natural Materials": "Combines natural wood beauty with superior craftsmanship",
- "Wood Construction": "Solid beech wood construction with oak board seating",
- "Craftsmanship Quality": "Superior craftsmanship with natural wood beauty",
- "Environment Versatility": "Reliable stability in any environment",
- "Mobility and Durability": "Easy mobility and handling while maintaining exceptional durability",
- "Comfort Options": "Available upholstered seat for extra comfort",
- "Design Longevity": "Timeless design that never goes out of style",
- "Space Enhancement": "Enhances any space",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_1.webp",
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp",
- "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_2.webp"
- ]
- },
- {
- "id": 40,
- "name": "Faro",
- "description": "Great for indoor and outdoor use. Stackable for space saving. Available in different colors. Light and easy to move.",
- "image": "assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg",
- "alt": "Faro",
- "category": "barstools",
- "images": [
- "assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg",
- "assets/images/products/categories/barstools/faro/1024x500_Gallery_Faro.webp",
- "assets/images/products/categories/barstools/faro/Cafe_Faro-Stool_Gallery_03_600x600px.jpg",
- "assets/images/products/categories/barstools/faro/Faro-Barstool-Anthracite-Setting.jpg"
- ],
- "descriptionLong": [
- "The Faro barstool is great for both indoor and outdoor use, providing exceptional versatility for various environments and weather conditions. This sophisticated barstool features a stackable design for space saving, making it perfect for areas where efficient storage and space management are essential.",
- "Available in different colors, the Faro barstool offers flexibility to match any interior or exterior design scheme. The light and easy to move construction ensures convenient handling and repositioning, making this barstool ideal for dynamic spaces that require frequent layout changes.",
- "The combination of indoor and outdoor versatility, stackable functionality, and easy mobility makes the Faro barstool an excellent choice for cafes, restaurants, patios, and any space where flexibility and convenience are paramount. Whether used indoors for comfortable seating or outdoors for weather-resistant functionality, this barstool delivers exceptional performance and style."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Great for indoor and outdoor use",
- "Indoor Use": "Great for indoor use",
- "Outdoor Use": "Great for outdoor use",
- "Versatility": "Great for both indoor and outdoor use, providing exceptional versatility for various environments and weather conditions",
- "Stackable Design": "Stackable for space saving",
- "Space Saving": "Stackable design for space saving, perfect for areas where efficient storage and space management are essential",
- "Different Colors": "Available in different colors",
- "Design Flexibility": "Offers flexibility to match any interior or exterior design scheme",
- "Light Construction": "Light and easy to move",
- "Easy to Move": "Light and easy to move construction ensures convenient handling and repositioning",
- "Convenient Handling": "Ensures convenient handling and repositioning",
- "Dynamic Spaces": "Ideal for dynamic spaces that require frequent layout changes",
- "Layout Changes": "Perfect for spaces that require frequent layout changes",
- "Indoor Versatility": "Great for indoor use with comfortable seating",
- "Outdoor Versatility": "Excellent for outdoor use with weather-resistant functionality",
- "Stackable Functionality": "Stackable functionality for efficient storage",
- "Easy Mobility": "Easy mobility for convenient repositioning",
- "Flexibility and Convenience": "Perfect for spaces where flexibility and convenience are paramount",
- "Cafes": "Excellent choice for cafes",
- "Restaurants": "Ideal for restaurants",
- "Patios": "Perfect for patios",
- "Weather-resistant": "Weather-resistant functionality for outdoor use",
- "Exceptional Performance": "Delivers exceptional performance and style",
- "Style and Performance": "Delivers exceptional performance and style",
- "Environment Versatility": "Versatile for various environments and weather conditions",
- "Storage Management": "Efficient storage and space management",
- "Repositioning": "Convenient handling and repositioning",
- "Interior Design": "Matches any interior design scheme",
- "Exterior Design": "Matches any exterior design scheme",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/barstools/faro/Faro-Barstool-Moss-02a.webp",
- "assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg"
- ]
- },
- {
- "id": 41,
- "name": "Abril",
- "description": "Comfortable contoured seat for long sitting. Modern and stylish seating for casual spaces. Solid build designed for everyday use. Available in different color finishes. Ideal for kitchens, bars, and high tables.",
- "image": "assets/images/products/categories/barstools/abril/ABRIL_029.jpg",
- "alt": "Abril",
- "category": "barstools",
- "images": [
- "assets/images/products/categories/barstools/abril/ABRIL_029.jpg",
- "assets/images/products/categories/barstools/abril/ABRIL_072.jpg",
- "assets/images/products/categories/barstools/abril/ABRIL_074.jpg",
- "assets/images/products/categories/barstools/abril/ABRIL_076.jpg"
- ],
- "descriptionLong": [
- "The Abril barstool features a comfortable contoured seat designed for long sitting periods, ensuring exceptional comfort and support during extended use. This sophisticated barstool combines modern and stylish seating perfect for casual spaces, creating an inviting atmosphere that enhances any environment.",
- "Built with a solid build designed for everyday use, the Abril barstool ensures reliable durability and long-lasting performance in high-traffic areas. Available in different color finishes, this barstool offers versatility to match any interior design scheme and personal preferences, making it a perfect choice for diverse settings.",
- "Ideal for kitchens, bars, and high tables, the Abril barstool adapts seamlessly to various casual dining and entertainment spaces. The combination of comfortable contoured seating, modern styling, and solid construction makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that enhance the overall dining and social experience."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, wooden base",
- "Design": "Comfortable contoured seat for long sitting",
- "Contoured Seat": "Comfortable contoured seat for long sitting",
- "Long Sitting Comfort": "Designed for long sitting periods, ensuring exceptional comfort and support during extended use",
- "Modern Styling": "Modern and stylish seating for casual spaces",
- "Stylish Seating": "Modern and stylish seating for casual spaces",
- "Casual Spaces": "Perfect for casual spaces, creating an inviting atmosphere",
- "Solid Build": "Solid build designed for everyday use",
- "Everyday Use": "Designed for everyday use, ensures reliable durability and long-lasting performance",
- "High-traffic Areas": "Reliable durability and long-lasting performance in high-traffic areas",
- "Color Finishes": "Available in different color finishes",
- "Different Colors": "Available in different color finishes",
- "Versatility": "Offers versatility to match any interior design scheme and personal preferences",
- "Interior Design": "Matches any interior design scheme and personal preferences",
- "Diverse Settings": "Perfect choice for diverse settings",
- "Target Areas": "Ideal for kitchens, bars, and high tables",
- "Kitchens": "Perfect for kitchens",
- "Bars": "Ideal for bars",
- "High Tables": "Excellent for high tables",
- "Casual Dining": "Adapts seamlessly to various casual dining and entertainment spaces",
- "Entertainment Spaces": "Perfect for entertainment spaces",
- "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
- "Dining Experience": "Enhances the overall dining and social experience",
- "Social Experience": "Enhances the overall social experience",
- "Comfort and Support": "Ensures exceptional comfort and support during extended use",
- "Extended Use": "Perfect for extended use periods",
- "Inviting Atmosphere": "Creates an inviting atmosphere that enhances any environment",
- "Environment Enhancement": "Enhances any environment",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/barstools/abril/ABRIL_077.jpg",
- "assets/images/products/categories/barstools/abril/ABRIL_102.jpg",
- "assets/images/products/categories/barstools/abril/ABRIL_112.jpg"
- ]
- },
- {
- "id": 42,
- "name": "Kalea",
- "description": "Modern design with a refined look. Features optional seat pad for extra comfort. Polypropylene shell with strong 4-legged frame in chrome or black finish.",
- "image": "assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg",
- "alt": "Kalea",
- "category": "barstools",
- "images": [
- "assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg",
- "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_09_600x600px.webp",
- "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_11_600x600px.jpg",
- "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_13_600x600px.webp"
- ],
- "descriptionLong": [
- "The Kalea barstool features a modern design with a refined look that creates a sophisticated and contemporary aesthetic perfect for any professional or casual environment. This elegant barstool combines contemporary styling with exceptional functionality, making it an ideal choice for spaces that demand both modern appeal and practical comfort.",
- "Featuring an optional seat pad for extra comfort, the Kalea barstool provides flexibility to meet diverse seating requirements and user preferences. The polypropylene shell ensures durability and easy maintenance, while the optional seat pad adds an extra layer of comfort for users who prefer enhanced seating support during extended use.",
- "Built with a strong 4-legged frame available in chrome or black finish, the Kalea barstool ensures reliable stability and long-lasting performance. The combination of modern refined design, optional comfort features, and durable polypropylene construction makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that enhance any space."
- ],
- "additionalInformation": {
- "Material": "Polypropylene shell, strong 4-legged frame",
- "Design": "Modern design with a refined look",
- "Modern Design": "Modern design with a refined look",
- "Refined Look": "Modern design with a refined look",
- "Sophisticated Aesthetic": "Creates a sophisticated and contemporary aesthetic perfect for any professional or casual environment",
- "Contemporary Aesthetic": "Contemporary aesthetic perfect for any professional or casual environment",
- "Contemporary Styling": "Combines contemporary styling with exceptional functionality",
- "Modern Appeal": "Ideal choice for spaces that demand both modern appeal and practical comfort",
- "Practical Comfort": "Demands both modern appeal and practical comfort",
- "Optional Seat Pad": "Optional seat pad for extra comfort",
- "Extra Comfort": "Optional seat pad for extra comfort",
- "Seating Flexibility": "Provides flexibility to meet diverse seating requirements and user preferences",
- "User Preferences": "Meets diverse seating requirements and user preferences",
- "Polypropylene Shell": "Polypropylene shell ensures durability and easy maintenance",
- "Durability": "Polypropylene shell ensures durability and easy maintenance",
- "Easy Maintenance": "Polypropylene shell ensures easy maintenance",
- "Enhanced Seating": "Optional seat pad adds an extra layer of comfort for users who prefer enhanced seating support",
- "Extended Use": "Enhanced seating support during extended use",
- "Strong Frame": "Strong 4-legged frame",
- "4-legged Frame": "Strong 4-legged frame",
- "Chrome Finish": "Available in chrome finish",
- "Black Finish": "Available in black finish",
- "Finish Options": "Available in chrome or black finish",
- "Reliable Stability": "Ensures reliable stability and long-lasting performance",
- "Long-lasting Performance": "Long-lasting performance",
- "Modern Refined Design": "Combination of modern refined design, optional comfort features, and durable polypropylene construction",
- "Optional Comfort": "Optional comfort features",
- "Durable Construction": "Durable polypropylene construction",
- "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
- "Space Enhancement": "Enhances any space",
- "Professional Environment": "Perfect for any professional environment",
- "Casual Environment": "Perfect for any casual environment",
- "Environment Versatility": "Perfect for any professional or casual environment",
- "Comfort Features": "Optional comfort features for enhanced seating",
- "Seating Support": "Enhanced seating support for extended use",
- "Frame Stability": "Strong 4-legged frame ensures reliable stability",
- "Construction Quality": "Durable polypropylene construction",
- "Maintenance Ease": "Easy maintenance with polypropylene shell",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_20_600x600px.webp",
- "assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg"
- ]
- },
- {
- "id": 43,
- "name": "Glove",
- "description": "Simple and elegant design. Features comfortable curved seat and strong and durable frame.",
- "image": "assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp",
- "alt": "Glove",
- "category": "barstools",
- "images": [
- "assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp",
- "assets/images/products/categories/barstools/glove/GLOVE_HIGH_BLACK_01.webp",
- "assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_01.webp",
- "assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_01.webp"
- ],
- "descriptionLong": [
- "The Glove barstool features a simple and elegant design that creates a sophisticated and timeless aesthetic perfect for any professional or casual environment. This refined barstool combines clean lines with exceptional functionality, making it an ideal choice for spaces that demand both style and practicality.",
- "Featuring a comfortable curved seat, the Glove barstool provides exceptional comfort and ergonomic support for users of all sizes. The curved seat design ensures proper spinal alignment and reduces fatigue during extended seating periods, while the simple and elegant design maintains a professional appearance that enhances any space.",
- "Built with a strong and durable frame, the Glove barstool ensures reliable stability and long-lasting performance in high-traffic areas. The combination of simple elegance, comfortable curved seating, and durable construction makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that stand the test of time."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Simple and elegant design",
- "Simple Design": "Simple and elegant design",
- "Elegant Design": "Simple and elegant design",
- "Sophisticated Aesthetic": "Creates a sophisticated and timeless aesthetic perfect for any professional or casual environment",
- "Timeless Aesthetic": "Timeless aesthetic perfect for any professional or casual environment",
- "Clean Lines": "Combines clean lines with exceptional functionality",
- "Exceptional Functionality": "Combines clean lines with exceptional functionality",
- "Style and Practicality": "Ideal choice for spaces that demand both style and practicality",
- "Comfortable Seat": "Comfortable curved seat",
- "Curved Seat": "Comfortable curved seat",
- "Ergonomic Support": "Provides exceptional comfort and ergonomic support for users of all sizes",
- "Spinal Alignment": "Curved seat design ensures proper spinal alignment",
- "Fatigue Reduction": "Reduces fatigue during extended seating periods",
- "Professional Appearance": "Simple and elegant design maintains a professional appearance that enhances any space",
- "Space Enhancement": "Enhances any space",
- "Strong Frame": "Strong and durable frame",
- "Durable Frame": "Strong and durable frame",
- "Reliable Stability": "Ensures reliable stability and long-lasting performance in high-traffic areas",
- "Long-lasting Performance": "Long-lasting performance in high-traffic areas",
- "High-traffic Areas": "Reliable stability and long-lasting performance in high-traffic areas",
- "Simple Elegance": "Combination of simple elegance, comfortable curved seating, and durable construction",
- "Comfortable Seating": "Comfortable curved seating",
- "Durable Construction": "Durable construction",
- "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
- "Stand the Test of Time": "Seating arrangements that stand the test of time",
- "Extended Seating": "Perfect for extended seating periods",
- "User Comfort": "Exceptional comfort and ergonomic support for users of all sizes",
- "Professional Environment": "Perfect for any professional environment",
- "Casual Environment": "Perfect for any casual environment",
- "Environment Versatility": "Perfect for any professional or casual environment",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_02.webp",
- "assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp"
- ]
- },
- {
- "id": 44,
- "name": "F25",
- "description": "Elegant, minimalist workstation for modern offices. Combines style and functionality for everyday work. Ideal for contemporary offices and collaborative areas.",
- "image": "assets/images/products/categories/work-station/f25/F25_DESK_01.webp",
- "alt": "F25",
- "category": "work-station",
- "images": [
- "assets/images/products/categories/work-station/f25/F25_DESK_01.webp",
- "assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp",
- "assets/images/products/categories/work-station/f25/F25_DESK_BENCH_02.webp",
- "assets/images/products/categories/work-station/f25/F25_DESK_01.webp"
- ],
- "descriptionLong": [
- "Elegant, minimalist workstation for modern offices. Balances style and everyday functionality.",
- "Ideal for contemporary offices and collaborative areas. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium laminate, steel frame",
- "Design": "Elegant, minimalist; modern office fit",
- "Use": "Everyday work; collaborative areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/work-station/f25/F25_DESK_01.webp",
- "assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp"
- ]
- },
- {
- "id": 45,
- "name": "Evolution",
- "description": "Modern, minimalist design for open offices. Supports collaborative and focused work. Cable management solutions keep the workspace neat. Available as single and cluster workstations.",
- "image": "assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg",
- "alt": "Evolution",
- "category": "work-station",
- "images": [
- "assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg",
- "assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg",
- "assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg",
- "assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg"
- ],
- "descriptionLong": [
- "Modern, minimalist workstation system for open offices. Designed to support both collaborative and focused work. Integrated cable management for a clean workspace.",
- "Available in single and cluster configurations. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium laminate, steel frame",
- "Design": "Modern minimalist; single or cluster",
- "Cable Management": "Integrated solutions for neat routing",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/work-station/evolution/Evo-dual-desk001.jpg",
- "assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg",
- "assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg",
- "assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg",
- "assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg"
- ]
- },
- {
- "id": 46,
- "name": "Zama",
- "description": "Functional and versatile bench desk system for modern offices. Available as single desks or multi‑user benching solutions. Flexible configurations to fit different office layouts—ideal for individual and collaborative spaces.",
- "image": "assets/images/products/categories/work-station/zama/10_660x300.webp",
- "alt": "Zama",
- "category": "work-station",
- "images": [
- "assets/images/products/categories/work-station/zama/10_660x300.webp",
- "assets/images/products/categories/work-station/zama/11_660x300.webp",
- "assets/images/products/categories/work-station/zama/13.webp",
- "assets/images/products/categories/work-station/zama/3_660x300.webp"
- ],
- "descriptionLong": [
- "Functional, versatile bench desk system. Single desks or multi‑user benching options. Flexible configurations for varied layouts.",
- "Ideal for both individual work and collaborative spaces. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium laminate, aluminum/steel frame",
- "Configurations": "Single or multi‑user benching",
- "Flexibility": "Fits varied office layouts",
- "Use": "Individual and collaborative",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/work-station/zama/6_660x300.webp",
- "assets/images/products/categories/work-station/zama/10_660x300.webp",
- "assets/images/products/categories/work-station/zama/13.webp"
- ]
- },
- {
- "id": 47,
- "name": "Evolution Dual Desk",
- "description": "Dual desk with a clean gap between tops for screen brackets. Cut‑out sections allow simple cable access and organization. Wide surface area for comfortable, ample working space—ideal for collaboration and individual tasks.",
- "image": "assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg",
- "alt": "Evolution Dual Desk",
- "category": "work-station",
- "images": [
- "assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg",
- "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg",
- "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722.jpg",
- "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1800X1510X722-300x300.jpg"
- ],
- "descriptionLong": [
- "Dual desk with clean gap for adding screen brackets. Cut‑outs for simple cable access and organization. Wide surface area for comfort and productivity.",
- "Practical for both collaboration and individual tasks. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium laminate, steel frame",
- "Design": "Dual desk; gap for screens; cable cut‑outs",
- "Surface": "Wide area for comfortable work",
- "Use": "Collaboration and individual tasks",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg",
- "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg"
- ]
- },
- {
- "id": 48,
- "name": "Xpress Lite",
- "description": "Simplistic design that fits easily into any workspace. Sleek panel office desk with a clean, modern look. Compact sizes suit both small and large offices; quick and easy to install.",
- "image": "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp",
- "alt": "Xpress Lite",
- "category": "work-station",
- "images": [
- "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp",
- "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_03.webp",
- "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_04.webp",
- "assets/images/products/categories/work-station/xpress-lite/XPRESS-LITE-1.jpg"
- ],
- "descriptionLong": [
- "Simplistic desk that fits into any workspace. Sleek panel design with a clean, modern look. Compact sizes to suit small and large offices.",
- "Quick and easy installation. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium laminate, steel frame",
- "Design": "Sleek panel desk; simplistic fit",
- "Sizes": "Compact options for varied offices",
- "Install": "Quick, easy installation",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/work-station/xpress-lite/xpress-lite-3.jpg",
- "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp"
- ]
- },
- {
- "id": 49,
- "name": "V30",
- "description": "Strong and versatile workstation system for modern offices. Available in multiple compositions to suit different layouts. Ideal for individual and collaborative use with a clean, minimalist design.",
- "image": "assets/images/products/categories/work-station/v30/v30.webp",
- "alt": "V30",
- "category": "work-station",
- "images": [
- "assets/images/products/categories/work-station/v30/v30.webp",
- "assets/images/products/categories/work-station/v30/v30 (12).webp",
- "assets/images/products/categories/work-station/v30/v30 (14).webp",
- "assets/images/products/categories/work-station/v30/v30 (16).webp"
- ],
- "descriptionLong": [
- "Strong, versatile workstation system. Multiple compositions for different office layouts. Ideal for individual and collaborative work.",
- "Clean, minimalist design that blends into any workspace. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Premium laminate/veneer, steel frame",
- "Configurations": "Multiple compositions for varied layouts",
- "Use": "Individual and collaborative",
- "Design": "Clean, minimalist",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/work-station/v30/v30.webp",
- "assets/images/products/categories/work-station/v30/v30 (12).webp"
- ]
- },
- {
- "id": 50,
- "name": "3.60",
- "description": "Premium executive task chair with 3.60 design. Perfect for executive offices and high-end work environments with superior comfort and ergonomics.",
- "image": "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp",
- "alt": "3.60",
- "category": "executive-task-chair",
- "images": [
- "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp",
- "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_04.webp",
- "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_06.webp",
- "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_09.webp"
- ],
- "descriptionLong": [
- "Experience executive comfort with our 3.60 task chair. This premium piece combines superior ergonomics with luxury design, perfect for executive offices and high-end work environments.",
- "The 3.60 executive task chair features premium materials, ergonomic design, and luxury styling. The superior construction and refined finish create an impressive atmosphere while providing exceptional comfort for executive work and professional environments."
- ],
- "additionalInformation": {
- "Material": "Premium leather, aluminum base",
- "Design": "Executive luxury aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_11.webp",
- "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp"
- ]
- },
- {
- "id": 51,
- "name": "Riya",
- "description": "Elegant executive task chair with Riya design. Perfect for professional offices and executive environments with sophisticated comfort.",
- "image": "assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp",
- "alt": "Riya",
- "category": "executive-task-chair",
- "images": [
- "assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp",
- "assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp",
- "assets/images/products/categories/executive-task-chair/riya/csm_riya__7__3b06473471.webp"
- ],
- "descriptionLong": [
- "Achieve professional excellence with our Riya executive task chair. This elegant piece combines sophisticated design with superior comfort, perfect for professional offices and executive environments.",
- "The Riya executive task chair features premium materials, elegant design, and professional styling. The sophisticated construction and refined finish create an impressive atmosphere while providing exceptional comfort for professional work and executive environments."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Elegant professional aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp",
- "assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp"
- ]
- },
- {
- "id": 52,
- "name": "Allure",
- "description": "Luxury executive task chair with Allure design. Perfect for high-end executive offices and premium work environments with exceptional comfort.",
- "image": "assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp",
- "alt": "Allure",
- "category": "executive-task-chair",
- "images": [
- "assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp",
- "assets/images/products/categories/executive-task-chair/allure/ALLURE_02.webp",
- "assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_CONFERENCE_01.webp",
- "assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_OSCILO_02.webp"
- ],
- "descriptionLong": [
- "Indulge in luxury comfort with our Allure executive task chair. This premium piece combines luxury design with exceptional comfort, perfect for high-end executive offices and premium work environments.",
- "The Allure executive task chair features premium materials, luxury design, and premium styling. The exceptional construction and refined finish create an impressive atmosphere while providing exceptional comfort for executive work and luxury environments."
- ],
- "additionalInformation": {
- "Material": "Premium leather, aluminum base",
- "Design": "Luxury premium aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-task-chair/allure/ALLURE_LOW_CONFERENCE_02.webp",
- "assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp"
- ]
- },
- {
- "id": 53,
- "name": "Accord",
- "description": "Professional executive task chair with Accord design. Perfect for executive offices and professional environments with superior ergonomics and comfort.",
- "image": "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg",
- "alt": "Accord",
- "category": "executive-task-chair",
- "images": [
- "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg",
- "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-02.jpg",
- "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-03.jpg",
- "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-05.jpg"
- ],
- "descriptionLong": [
- "Experience professional comfort with our Accord executive task chair. This professional piece combines superior ergonomics with comfortable design, perfect for executive offices and professional environments.",
- "The Accord executive task chair features premium materials, professional design, and ergonomic styling. The superior construction and refined finish create a productive atmosphere while providing exceptional comfort for executive work and professional environments."
- ],
- "additionalInformation": {
- "Material": "Premium fabric, aluminum base",
- "Design": "Professional ergonomic aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/executive-task-chair/accord/Accord-Black-01.jpg",
- "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg",
- "assets/images/products/categories/executive-task-chair/accord/Accord-Black-02.jpg",
- "assets/images/products/categories/executive-task-chair/accord/Accord-Black-03.jpg"
- ]
- },
- {
- "id": 54,
- "name": "Glove",
- "description": "Solid wooden legs for natural style. Durable and stable build. Strong metal frame for durability. Great for canteens.",
- "image": "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp",
- "alt": "Glove",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp",
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_02.webp",
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLACK.webp",
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLUE_02.webp"
- ],
- "descriptionLong": [
- "Glove brings natural style with solid wooden legs and a durable, stable build suited to daily use in canteens.",
- "A strong metal frame adds long-term durability while the overall design balances warmth and resilience.",
- "Great for canteens and shared dining spaces, Glove blends comfort, longevity, and a clean look."
- ],
- "additionalInformation": {
- "Material": "Solid wooden legs, metal frame",
- "Design": "Natural style with durable, stable build",
- "Frame": "Strong metal frame for durability",
- "Use Case": "Great for canteens",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_LACQUERED.webp",
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp",
- "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_OCHER-01.webp"
- ]
- },
- {
- "id": 55,
- "name": "Kalea",
- "description": "Slim and modern plastic seat. Ideal for canteens and dining spaces. Lightweight.",
- "image": "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg",
- "alt": "Kalea",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg",
- "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-04.jpg",
- "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-02.jpg",
- "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-03.jpg"
- ],
- "descriptionLong": [
- "Kalea features a slim and modern plastic seat that fits effortlessly into contemporary canteens and dining spaces.",
- "Its lightweight construction makes moving and cleaning fast and simple without compromising stability.",
- "Ideal where a clean, modern look and practical everyday usability are essential."
- ],
- "additionalInformation": {
- "Material": "Slim plastic seat, sturdy frame",
- "Design": "Slim and modern plastic seat",
- "Target Areas": "Ideal for canteens and dining spaces",
- "Weight": "Lightweight for easy handling",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-04.jpg",
- "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg"
- ]
- },
- {
- "id": 56,
- "name": "Abril",
- "description": "Perfect for canteens and casual places. Available in a variety of colors. Strong and durable build.",
- "image": "assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg",
- "alt": "Abril",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_004.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_006.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_022.jpg"
- ],
- "descriptionLong": [
- "The Abril canteen chair is perfect for canteens and casual places, offering reliable comfort and everyday durability. Its clean, versatile aesthetic fits seamlessly into modern shared dining spaces.",
- "Available in a variety of colors, Abril lets you match your environment or brand palette with ease while maintaining a cohesive look across your dining areas.",
- "Built strong and durable for daily use, Abril stands up to high-traffic settings while remaining comfortable and easy to maintain."
- ],
- "additionalInformation": {
- "Material": "Durable shell, sturdy frame",
- "Design": "Perfect for canteens and casual places",
- "Build": "Strong and durable for daily use",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_050.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_066.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_069.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_070.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_071.jpg",
- "assets/images/products/categories/canteen-chairs/abril/ABRIL_137.jpg"
- ]
- },
- {
- "id": 57,
- "name": "Costa",
- "description": "Lightweight and easy to carry. Weather resistant and long lasting. Available in range of colors. Non-slip feet for added stability and safety.",
- "image": "assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp",
- "alt": "Costa",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp",
- "assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-02a.webp",
- "assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-Mood-02.jpg",
- "assets/images/products/categories/canteen-chairs/costa/Costa-Moss-Green-02.jpg"
- ],
- "descriptionLong": [
- "Costa is lightweight and easy to carry, simplifying reconfiguration and cleaning in busy dining spaces.",
- "It is weather resistant and long lasting, making it suitable for both indoor and outdoor use while retaining its look over time.",
- "Available in a range of colors with non-slip feet for added stability and safety, Costa delivers dependable comfort every day."
- ],
- "additionalInformation": {
- "Material": "Weather-resistant shell, sturdy legs",
- "Design": "Lightweight and easy to carry",
- "Weather Resistance": "Weather resistant and long lasting",
- "Safety": "Non-slip feet for added stability and safety",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/costa/Costa-White-02a.webp",
- "assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp"
- ]
- },
- {
- "id": 58,
- "name": "Lambda",
- "description": "Versatile for everyday use. Comfortable, modern, and adaptable to different needs. Fits perfectly in canteens or home offices.",
- "image": "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp",
- "alt": "Lambda",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48033.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48034.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48009.webp"
- ],
- "descriptionLong": [
- "Lambda is versatile for everyday use with a comfortable, modern form that adapts to different needs.",
- "The balanced proportions and supportive seat work well across a range of tasks and settings.",
- "Fits perfectly in canteens or home offices where flexible, dependable seating is required."
- ],
- "additionalInformation": {
- "Material": "Durable shell, supportive frame",
- "Design": "Comfortable, modern, and adaptable",
- "Everyday Use": "Versatile for everyday use",
- "Adaptability": "Adapts to different needs",
- "Use Case": "Fits perfectly in canteens or home offices",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48014.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48015.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48064.webp",
- "assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48065.webp"
- ]
- },
- {
- "id": 59,
- "name": "Bika",
- "description": "Versatile for both indoor and outdoor settings. Highly stackable for space saving convenience. Available in variety of colors.",
- "image": "assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg",
- "alt": "Bika",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg",
- "assets/images/products/categories/canteen-chairs/bika/BIKA_022.jpg",
- "assets/images/products/categories/canteen-chairs/bika/BIKA_037.jpg",
- "assets/images/products/categories/canteen-chairs/bika/BIKA_039.jpg"
- ],
- "descriptionLong": [
- "Bika is versatile for both indoor and outdoor settings, delivering dependable performance across diverse environments.",
- "Its highly stackable design enables space-saving storage, making changeovers and cleaning faster and more efficient.",
- "Available in a variety of colors, Bika helps you achieve the right look while maintaining robust, everyday practicality."
- ],
- "additionalInformation": {
- "Material": "Weather-resistant shell, steel frame",
- "Design": "Versatile for indoor and outdoor",
- "Stackability": "Highly stackable for space saving",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/bika/BIKA_045.jpg",
- "assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg",
- "assets/images/products/categories/canteen-chairs/bika/BIKA_048.jpg"
- ]
- },
- {
- "id": 60,
- "name": "Riva",
- "description": "Seamless, modern design with rounded edge. Seat and back formed as one piece for comfort. Strong and durable for everyday use. Stackable for space saving storage.",
- "image": "assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp",
- "alt": "Riva",
- "category": "canteen-chairs",
- "images": [
- "assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp",
- "assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp",
- "assets/images/products/categories/canteen-chairs/riva/Riva-Moss-02.jpg",
- "assets/images/products/categories/canteen-chairs/riva/Riva-White-02.webp"
- ],
- "descriptionLong": [
- "Riva showcases a seamless, modern design with a soft rounded edge, delivering a clean aesthetic that elevates contemporary spaces.",
- "The seat and back are formed as one piece for comfort and support, while the strong build ensures durability for everyday use.",
- "Stackable for space-saving storage, Riva simplifies changeovers and helps you keep shared areas organized."
- ],
- "additionalInformation": {
- "Material": "One-piece shell, robust frame",
- "Design": "Seamless, modern with rounded edge",
- "Comfort": "Seat and back formed as one piece",
- "Durability": "Strong and durable for everyday use",
- "Stackable": "Stackable for space saving storage",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp",
- "assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp"
- ]
- },
- {
- "id": 61,
- "name": "Lockers",
- "description": "Secure storage solution for personal and workplace items. Available in multiple sizes and door configurations with optional lock types. Suitable for offices, staff areas, and shared workspaces.",
- "image": "assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg",
- "alt": "Lockers",
- "category": "storage",
- "images": [
- "assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg",
- "assets/images/products/categories/storage/lockers/CAMPUS_01.webp",
- "assets/images/products/categories/storage/lockers/CAMPUS_02.webp",
- "assets/images/products/categories/storage/lockers/CAMPUS_03.webp"
- ],
- "descriptionLong": [
- "Secure storage for personal and workplace items. Multiple sizes and door configurations. Optional lock types for different security needs.",
- "Ideal for offices, staff areas, and shared workspaces. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Steel construction",
- "Configurations": "Multiple sizes and door options",
- "Lock Types": "Key, combination, or digital",
- "Use": "Offices, staff areas, shared workspaces",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/storage/lockers/CAMPUS_04.webp",
- "assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg",
- "assets/images/products/categories/storage/lockers/CAMPUS_05.webp",
- "assets/images/products/categories/storage/lockers/COVER.jpg",
- "assets/images/products/categories/storage/lockers/image001.png",
- "assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300 (1).png",
- "assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300.png",
- "assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-912-WT.png",
- "assets/images/products/categories/storage/lockers/SYS163017-001-1-300x300.jpg"
- ]
- },
- {
- "id": 62,
- "name": "Melamine Storage",
- "description": "Stylish storage with a smooth melamine finish. Strong and durable for everyday office use. Available as cabinets, drawers, and mobile pedestals—designed to keep files and essentials organized.",
- "image": "assets/images/products/categories/storage/melamine-storage/1.webp",
- "alt": "Melamine Storage",
- "category": "storage",
- "images": [
- "assets/images/products/categories/storage/melamine-storage/1.webp",
- "assets/images/products/categories/storage/melamine-storage/25.webp",
- "assets/images/products/categories/storage/melamine-storage/26.webp",
- "assets/images/products/categories/storage/melamine-storage/29.webp"
- ],
- "descriptionLong": [
- "Smooth melamine finish with modern style. Strong, durable storage for everyday office use. Options include cabinets, drawers, and mobile pedestals.",
- "Keeps files, documents, and office essentials organized. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Melamine, steel hardware",
- "Finish": "Smooth melamine",
- "Variants": "Cabinets, drawers, mobile pedestals",
- "Use": "Files, documents, office essentials",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/storage/melamine-storage/30.webp",
- "assets/images/products/categories/storage/melamine-storage/1.webp",
- "assets/images/products/categories/storage/melamine-storage/25.webp",
- "assets/images/products/categories/storage/melamine-storage/26.webp"
- ]
- },
- {
- "id": 63,
- "name": "Metal Storage",
- "description": "Clean, professional look that blends into any workspace. Options include lockers, cabinets, and pedestal drawers. Provides secure space for files, stationery, and personal items.",
- "image": "assets/images/products/categories/storage/metal-storage/COVER.jpg",
- "alt": "Metal Storage",
- "category": "storage",
- "images": [
- "assets/images/products/categories/storage/metal-storage/COVER.jpg",
- "assets/images/products/categories/storage/metal-storage/1024x500_Gallery_Metal-Lockers_1.webp",
- "assets/images/products/categories/storage/metal-storage/400x400_Thumbnail_Storage_MetalLocker.jpg",
- "assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_03_600x600px.webp"
- ],
- "descriptionLong": [
- "Clean, professional metal storage for any workspace. Available as lockers, cabinets, and pedestal drawers.",
- "Secure storage for files, stationery, and personal items. It is backed by a 5-year warranty."
- ],
- "additionalInformation": {
- "Material": "Powder‑coated steel",
- "Variants": "Lockers, cabinets, pedestal drawers",
- "Look": "Clean, professional; blends in",
- "Use": "Files, stationery, personal items",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_07_600x600px.webp",
- "assets/images/products/categories/storage/metal-storage/COVER.jpg"
- ]
- },
- {
- "id": 64,
- "name": "La Mia",
- "description": "Options with or without arms. Available in black, light grey, or white. Optional upholstered seat for added comfort. Perfect for training rooms, seminars, and collaborative spaces.",
- "image": "assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg",
- "alt": "La Mia",
- "category": "training-chairs",
- "images": [
- "assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg",
- "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_04_600x600px.jpg",
- "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_05_600x600px.jpg",
- "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_08_600x600px.jpg"
- ],
- "descriptionLong": [
- "La Mia offers options with or without arms to meet different preferences. Available in black, light grey, or white with an optional upholstered seat for added comfort.",
- "Perfect for training rooms, seminars, and collaborative spaces that require versatile seating."
- ],
- "additionalInformation": {
- "Material": "Durable frame, optional upholstered seat",
- "Arms": "Options with or without arms",
- "Colors": "Black, light grey, or white",
- "Use Cases": "Training rooms, seminars, collaborative spaces",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_09_600x600px.jpg",
- "assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg",
- "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_12_600x600px.jpg",
- "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_17_600x600px.webp"
- ]
- },
- {
- "id": 65,
- "name": "La Kendo",
- "description": "Versatile chair for meetings, training and collaborative spaces. Optional upholstered seat. Comfortable seat and back. Optional arms and writing tablet.",
- "image": "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg",
- "alt": "La Kendo",
- "category": "training-chairs",
- "images": [
- "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg",
- "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-3.jpg",
- "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-4.jpg",
- "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-5.jpg"
- ],
- "descriptionLong": [
- "La Kendo is a versatile chair for meetings, training, and collaborative spaces. It offers an optional upholstered seat, optional arms, and an optional writing tablet.",
- "Comfortable seat and back provide support across a wide range of activities."
- ],
- "additionalInformation": {
- "Material": "Durable frame, optional upholstered seat",
- "Design": "Versatile for meetings, training, collaboration",
- "Arms": "Optional arms available",
- "Writing Tablet": "Optional tablet available",
- "Comfort": "Comfortable seat and back",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-6.jpg",
- "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg"
- ]
- },
- {
- "id": 66,
- "name": "Icon",
- "description": "Breathable mesh back for comfort. Optional writing tablet available. Sleek and functional training chair. Stackable when tablet is not attached.",
- "image": "assets/images/products/categories/training-chairs/icon/ICON-1.jpg",
- "alt": "Icon",
- "category": "training-chairs",
- "images": [
- "assets/images/products/categories/training-chairs/icon/ICON-1.jpg",
- "assets/images/products/categories/training-chairs/icon/ICON-2.jpg",
- "assets/images/products/categories/training-chairs/icon/ICON-3.jpg",
- "assets/images/products/categories/training-chairs/icon/ICON-4.jpg"
- ],
- "descriptionLong": [
- "Icon features a breathable mesh back for comfort and support during long sessions. An optional writing tablet is available to add note‑taking capability when needed.",
- "Sleek and functional design; stackable when the tablet is not attached."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh back, steel frame",
- "Design": "Sleek and functional training chair",
- "Writing Tablet": "Optional tablet available",
- "Stacking": "Stackable when tablet is not attached",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-chairs/icon/ICON-7.jpg",
- "assets/images/products/categories/training-chairs/icon/ICON-1.jpg",
- "assets/images/products/categories/training-chairs/icon/Icon-Setting-03.jpg",
- "assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_06_600x600px.jpg"
- ]
- },
- {
- "id": 67,
- "name": "Arete",
- "description": "Comfortable moulded foam seat and back. Flip up seat for convenient nesting and space saving storage. Modern training chair with ergonomic design. Ideal for training rooms and seminar spaces.",
- "image": "assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg",
- "alt": "Arete",
- "category": "training-chairs",
- "images": [
- "assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg",
- "assets/images/products/categories/training-chairs/arete/Arete-Blue-04.jpg",
- "assets/images/products/categories/training-chairs/arete/Arete-Green-02.jpg",
- "assets/images/products/categories/training-chairs/arete/Arete-Green-04.jpg"
- ],
- "descriptionLong": [
- "Arete features a comfortable moulded foam seat and back, delivering support for extended sessions. A flip up seat enables convenient nesting for space‑saving storage between trainings.",
- "The modern, ergonomic design makes it ideal for training rooms and seminar spaces."
- ],
- "additionalInformation": {
- "Material": "Moulded foam seat and back, steel frame",
- "Design": "Modern ergonomic training chair",
- "Nesting": "Flip up seat allows convenient nesting and storage",
- "Use Cases": "Ideal for training rooms and seminar spaces",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-chairs/arete/Arete-Grey-04.jpg",
- "assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg"
- ]
- },
- {
- "id": 68,
- "name": "Free Rein",
- "description": "Modern and practical training chair. Comfortable seat with supportive back. Includes writing tablet for note taking.",
- "image": "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg",
- "alt": "Free Rein",
- "category": "training-chairs",
- "images": [
- "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg",
- "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-3.jpg",
- "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-4.jpg",
- "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-8.jpg"
- ],
- "descriptionLong": [
- "Free Rein is a modern and practical training chair with a comfortable seat and supportive back. It includes a writing tablet for convenient note taking during sessions.",
- "A smart choice for versatile, everyday training environments."
- ],
- "additionalInformation": {
- "Material": "Supportive seat and back, durable frame",
- "Design": "Modern and practical training chair",
- "Writing Tablet": "Includes tablet for note taking",
- "Comfort": "Comfortable seat with supportive back",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_03_600x600px.jpg",
- "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg"
- ]
- },
- {
- "id": 69,
- "name": "Glove Plus Tablet",
- "description": "Supportive seat and backrest for comfort. Fitted with a handy writing tablet.",
- "image": "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp",
- "alt": "Glove Plus Table",
- "category": "training-chairs",
- "images": [
- "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp",
- "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp"
- ],
- "descriptionLong": [
- "Glove Plus Tablet offers a supportive seat and backrest for comfort during extended sessions. It is fitted with a handy writing tablet for notes and tasks.",
- "A compact, practical solution for training rooms and classrooms."
- ],
- "additionalInformation": {
- "Material": "Supportive seat and backrest, integrated writing tablet",
- "Design": "Practical training chair with tablet",
- "Tablet": "Fitted with a handy writing tablet",
- "Comfort": "Supportive seat and backrest",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp",
- "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp"
- ]
- },
- {
- "id": 70,
- "name": "Chic",
- "description": "Sleek swivel task chair in chic black or light grey finish. Features breathable mesh back for comfort and lightweight design perfect for office use.",
- "image": "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp",
- "alt": "Chic",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp",
- "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_03_600x600px.webp",
- "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_10_600x600px.jpg",
- "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_12_600x600px.webp"
- ],
- "descriptionLong": [
- "The Chic swivel task chair delivers exceptional comfort and style for modern office environments. Featuring a breathable mesh back that promotes airflow and reduces heat buildup during long work sessions, this chair ensures you stay comfortable throughout your day.",
- "Available in chic black or light grey finish, the sleek design seamlessly integrates into any professional workspace. The lightweight construction makes it easy to move and reposition, while the supportive backrest provides simple yet effective functionality for daily office use.",
- "Perfect for individual workstations, meeting rooms, or collaborative spaces, the Chic task chair combines practical functionality with contemporary aesthetics. Its versatile design and reliable construction make it an ideal choice for businesses seeking quality seating solutions."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh back, lightweight frame",
- "Design": "Sleek swivel task chair in chic black or light grey finish",
- "Finish Options": "Black or light grey finish available",
- "Comfort Features": "Breathable mesh back for airflow and comfort",
- "Functionality": "Supportive backrest with simple functionality",
- "Use Cases": "Perfect for office use and professional workspaces",
- "Construction": "Lightweight and versatile design",
- "Durability": "Robust construction for daily office use",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/chic/Chic_Grey_Gallery_09_600x600px.jpg",
- "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp",
- "assets/images/products/categories/task-chairs/chic/Chic-Black-Simple-02.jpg",
- "assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-01-768x770.jpg",
- "assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-03-768x768.jpg",
- "assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-04-768x768.jpg"
- ]
- },
- {
- "id": 71,
- "name": "Dot Pro",
- "description": "Sleek, modern swivel task chair with ergonomic comfort for daily use. Versatile for office or meeting spaces with durable construction and easy maintenance.",
- "image": "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp",
- "alt": "Dot Pro",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_06.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_07.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_08.webp"
- ],
- "descriptionLong": [
- "The Dot Pro swivel task chair represents the perfect fusion of sleek modern design and ergonomic comfort. Engineered for daily use in demanding work environments, this chair delivers exceptional support and versatility for both individual workstations and collaborative meeting spaces.",
- "Featuring a contemporary aesthetic with clean lines and premium materials, the Dot Pro is designed for durability and easy maintenance. Available in both mesh and upholstered finishes, with optional headrest configurations, this chair adapts to your specific workspace needs. The robust construction ensures long-lasting performance while the ergonomic design promotes proper posture and comfort during extended work sessions.",
- "Whether you're setting up a modern office workstation or furnishing a dynamic meeting room, the Dot Pro task chair provides the perfect balance of style, comfort, and functionality. Its versatile design makes it equally suitable for focused individual work and collaborative team environments."
- ],
- "additionalInformation": {
- "Material": "Premium mesh or upholstered fabric, reinforced steel frame",
- "Design": "Sleek modern swivel task chair with ergonomic features",
- "Finish Options": "Mesh or upholstered finish available",
- "Headrest": "Available with or without headrest",
- "Use Cases": "Workstations and meeting rooms",
- "Ergonomics": "Designed for daily use with proper posture support",
- "Maintenance": "Easy to clean and maintain",
- "Durability": "Robust construction for long-lasting performance",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_09.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_10.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_HEADREST.webp",
- "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_01.webp"
- ]
- },
- {
- "id": 72,
- "name": "Flexi",
- "description": "Modern ergonomic swivel task chair with mesh back and adjustable lumbar support. Features synchronous tilt for dynamic sitting comfort, optional headrest/armrest/base finishes, and available in multiple colors including black.",
- "image": "assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp",
- "alt": "Flexi",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp",
- "assets/images/products/categories/task-chairs/flexi/fx_1103a_42764.webp",
- "assets/images/products/categories/task-chairs/flexi/fx_1103a_42766.webp",
- "assets/images/products/categories/task-chairs/flexi/fx_1103a_42770.webp"
- ],
- "descriptionLong": [
- "The Flexi swivel task chair delivers exceptional ergonomic support for modern workspaces. Featuring a breathable mesh back with adjustable lumbar support, this chair promotes proper spinal alignment and reduces back strain during extended work sessions.",
- "The innovative synchronous tilt mechanism allows the seat and backrest to recline together in perfect harmony, providing dynamic sitting comfort that adapts to your natural movement patterns. This feature encourages healthy posture changes throughout the day, reducing fatigue and improving productivity.",
- "Available in multiple colors including black, the Flexi chair offers optional headrest, armrest, and base finishes for complete customization. Designed specifically for modern ergonomic workspaces, this chair seamlessly integrates into contemporary office environments while providing superior comfort and support."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh back, premium fabric seat",
- "Design": "Modern ergonomic swivel task chair for contemporary workspaces",
- "Back Support": "Mesh back with adjustable lumbar support",
- "Tilt Mechanism": "Synchronous tilt for dynamic sitting comfort",
- "Customization Options": "Optional headrest, armrest, and base finishes",
- "Ergonomic Features": "Promotes proper spinal alignment and reduces back strain",
- "Dynamic Comfort": "Adapts to natural movement patterns and encourages healthy posture",
- "Use Cases": "Designed for modern ergonomic workspaces",
- "Workspace Integration": "Seamlessly integrates into contemporary office environments",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/flexi/FX_1104_087_22_43704.webp",
- "assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp",
- "assets/images/products/categories/task-chairs/flexi/FX_1104_087_43688.webp",
- "assets/images/products/categories/task-chairs/flexi/FX_1104_087_43691.webp",
- "assets/images/products/categories/task-chairs/flexi/FX_1104_087_43694.webp"
- ]
- },
- {
- "id": 73,
- "name": "Victory",
- "description": "Elegant swivel task chair with high back design and flowing curves built to stand out in any space. Features breathable mesh back in wide spectrum of colors and sync tilt mechanism for dynamic movement and posture comfort.",
- "image": "assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp",
- "alt": "Victory",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp",
- "assets/images/products/categories/task-chairs/victory/VI_1401_41507.webp",
- "assets/images/products/categories/task-chairs/victory/vi_1402_42741.webp",
- "assets/images/products/categories/task-chairs/victory/vi_1405_42712.webp"
- ],
- "descriptionLong": [
- "The Victory swivel task chair commands attention with its elegant high back design and flowing curves, built to stand out in any space. This sophisticated piece combines striking aesthetics with exceptional comfort, making it the perfect centerpiece for executive offices and premium workspaces.",
- "Featuring a breathable mesh back available in a wide spectrum of colors, the Victory chair allows you to express your personal style while maintaining optimal airflow and comfort throughout your workday. The mesh construction promotes proper ventilation and reduces heat buildup during extended sitting sessions.",
- "The innovative sync tilt mechanism supports dynamic movement and posture comfort, allowing the seat and backrest to work in perfect harmony. This feature encourages natural movement patterns and healthy posture changes, ensuring you stay comfortable and productive throughout your day while maintaining the chair's elegant, distinguished appearance."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh back, premium frame construction",
- "Design": "Elegant high back design with flowing curves built to stand out",
- "Back Design": "High back design with flowing curves for striking appearance",
- "Mesh Back": "Breathable mesh back available in wide spectrum of colors",
- "Tilt Mechanism": "Sync tilt mechanism supports dynamic movement and posture comfort",
- "Ergonomic Features": "Encourages natural movement patterns and healthy posture changes",
- "Ventilation": "Promotes proper airflow and reduces heat buildup",
- "Use Cases": "Perfect centerpiece for executive offices and premium workspaces",
- "Aesthetic Impact": "Built to stand out in any space with sophisticated appearance",
- "Comfort Features": "Maintains elegant appearance while providing exceptional comfort",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/victory/VI_1411_41480.webp",
- "assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp",
- "assets/images/products/categories/task-chairs/victory/VI_1411_41481.webp",
- "assets/images/products/categories/task-chairs/victory/VI_1411_47941.webp"
- ]
- },
- {
- "id": 74,
- "name": "Link",
- "description": "Advanced swivel task chair with adjustable slide function and breathable mesh back. Features lumbar support control, adjustable arms, optional headrest, and comfortable black fabric seat padding for personalized comfort.",
- "image": "assets/images/products/categories/task-chairs/link/Link-01.jpg",
- "alt": "Link",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/link/Link-01.jpg",
- "assets/images/products/categories/task-chairs/link/Link-02.jpg",
- "assets/images/products/categories/task-chairs/link/Link-04.jpg",
- "assets/images/products/categories/task-chairs/link/Link-05.jpg"
- ],
- "descriptionLong": [
- "The Link swivel task chair delivers exceptional personalized comfort through advanced adjustable features. The seat features an adjustable slide function that allows for custom fit, ensuring optimal positioning for users of all sizes and preferences.",
- "Featuring a breathable mesh back with lumbar support control, the Link chair promotes proper spinal alignment and reduces back fatigue during extended work sessions. The arms can be raised or lowered for user preference, while the optional headrest provides added neck support for enhanced comfort.",
- "The comfortable black fabric seat padding ensures all-day comfort, while the comprehensive adjustability makes this chair perfect for individual workstations, collaborative spaces, and diverse office environments. The Link chair adapts to your specific needs, creating the perfect ergonomic setup for maximum productivity."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh back, comfortable black fabric seat padding",
- "Design": "Advanced swivel task chair with comprehensive adjustability",
- "Seat Features": "Seat with adjustable slide function for custom fit",
- "Back Support": "Breathable mesh back with lumbar support control",
- "Arm Adjustability": "Arms can be raised or lowered for user preference",
- "Headrest Options": "Optional headrest for added neck support",
- "Seat Comfort": "Comfortable black fabric seat padding",
- "Ergonomic Features": "Promotes proper spinal alignment and reduces back fatigue",
- "Use Cases": "Perfect for individual workstations and diverse office environments",
- "Customization": "Adapts to specific user needs for maximum productivity",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/link/LINK-BACK.jpg",
- "assets/images/products/categories/task-chairs/link/Link-01.jpg",
- "assets/images/products/categories/task-chairs/link/LINK-DETAIL-3.jpg"
- ]
- },
- {
- "id": 75,
- "name": "Space",
- "description": "Modern swivel task chair available in breathable mesh or soft 3D knit fabric. Comes in variety of colors including black, grey, green, red, and beige with optional headrest and adjustable arms for extra comfort.",
- "image": "assets/images/products/categories/task-chairs/space/SP_1501_52751.webp",
- "alt": "Space",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/space/SP_1501_52751.webp",
- "assets/images/products/categories/task-chairs/space/SP_1501_52753.webp",
- "assets/images/products/categories/task-chairs/space/SP_1501_52755.webp",
- "assets/images/products/categories/task-chairs/space/sp_1502_093_44599_.webp"
- ],
- "descriptionLong": [
- "The Space swivel task chair delivers exceptional comfort and versatility for modern office environments. Available in breathable mesh or soft 3D knit fabric, this chair provides optimal airflow and comfort throughout your workday, adapting to your preferred seating experience.",
- "With a variety of color options including black, grey, green, red, and beige, the Space chair seamlessly integrates into any office aesthetic. The optional headrest and adjustable arms provide extra comfort and personalized support, ensuring you can customize your seating experience for maximum productivity.",
- "Featuring a modern design that's perfect for offices and workspaces, the Space chair combines contemporary aesthetics with practical functionality. Whether you prefer the breathable mesh for enhanced airflow or the soft 3D knit fabric for premium comfort, this chair delivers the perfect balance of style and performance for your professional environment."
- ],
- "additionalInformation": {
- "Material": "Available in breathable mesh or soft 3D knit fabric",
- "Design": "Modern design, perfect for offices and workspaces",
- "Fabric Options": "Breathable mesh or soft 3D knit fabric available",
- "Comfort Features": "Optional headrest and adjustable arms for extra comfort",
- "Customization": "Personalized support and comfort settings",
- "Use Cases": "Perfect for offices and workspaces",
- "Aesthetic Integration": "Seamlessly integrates into any office aesthetic",
- "Comfort Balance": "Perfect balance of style and performance",
- "Professional Environment": "Ideal for professional work environments",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/space/sp_1522_093_44611_.webp",
- "assets/images/products/categories/task-chairs/space/SP_1501_52751.webp",
- "assets/images/products/categories/task-chairs/space/sp_1522_093_44618_.webp",
- "assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_47876_2.webp",
- "assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_48219.webp",
- "assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46494.webp"
- ]
- },
- {
- "id": 76,
- "name": "DHL",
- "description": "Ergonomic swivel task chair with breathable mesh back and adjustable features. Available with or without headrest, featuring adjustable arms and sleek black frame ideal for modern offices.",
- "image": "assets/images/products/categories/task-chairs/dhl/DHL-02.jpg",
- "alt": "DHL",
- "category": "task-chairs",
- "images": [
- "assets/images/products/categories/task-chairs/dhl/DHL-02.jpg",
- "assets/images/products/categories/task-chairs/dhl/DHL-04 (1).jpg",
- "assets/images/products/categories/task-chairs/dhl/DHL-HB-01.jpg",
- "assets/images/products/categories/task-chairs/dhl/DHL-HB-02.jpg"
- ],
- "descriptionLong": [
- "The DHL swivel task chair delivers superior ergonomic support for modern office environments. Featuring a breathable mesh back that promotes proper posture and reduces fatigue during extended work sessions, this chair ensures optimal comfort throughout your day.",
- "Available with or without headrest options, the DHL chair adapts to your specific comfort needs. The adjustable arms allow for personalized comfort settings, while the sleek black frame creates a professional aesthetic that seamlessly integrates into any modern office environment.",
- "Perfect for high-traffic offices, busy work environments, and demanding professional settings, the DHL task chair combines ergonomic excellence with reliable construction. Its breathable design and adjustable features make it an ideal choice for businesses prioritizing employee comfort and productivity."
- ],
- "additionalInformation": {
- "Material": "Breathable mesh back, sleek black frame",
- "Design": "Ergonomic swivel task chair with adjustable features",
- "Ergonomic Support": "Breathable mesh back with ergonomic support",
- "Headrest Options": "Available with or without headrest",
- "Adjustable Features": "Adjustable arms for personalized comfort",
- "Frame Design": "Sleek black frame, ideal for modern offices",
- "Use Cases": "Perfect for high-traffic offices and busy environments",
- "Comfort Features": "Promotes proper posture and reduces fatigue",
- "Durability": "Reliable construction for demanding professional settings",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/task-chairs/dhl/DHL-HB-03.jpg",
- "assets/images/products/categories/task-chairs/dhl/DHL-02.jpg",
- "assets/images/products/categories/task-chairs/dhl/DHL-HB-04.jpg"
- ]
- },
- {
- "id": 81,
- "name": "Evolution Steel",
- "description": "Available in different sizes to suit any meeting spaces. Can also serve as extra desks for flexible workspace needs. Strong steel frame for stability and long lasting use.",
- "image": "assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg",
- "alt": "Evolution Steel",
- "category": "meeting-tables",
- "images": [
- "assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg",
- "assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png",
- "assets/images/products/categories/meeting-tables/evolution-steel/web-1015-300x192.jpg"
- ],
- "descriptionLong": [
- "Evolution Steel is available in different sizes to suit any meeting space. It can also serve as extra desks for flexible workspace needs.",
- "A strong steel frame provides stability for long‑lasting use."
- ],
- "additionalInformation": {
- "Material": "Steel frame, premium tabletop",
- "Design": "Modern professional aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg",
- "assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png"
- ]
- },
- {
- "id": 82,
- "name": "Snap Conference",
- "description": "Easy to reconfigure and store when not in use. Lockable castors for easy mobility and stability. Round conference table with a smooth, well finished edge.",
- "image": "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg",
- "alt": "Snap Conference",
- "category": "meeting-tables",
- "images": [
- "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg",
- "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-72dpi-49.jpg",
- "assets/images/products/categories/meeting-tables/snap-conference/FlipTop-mobile-CONFERENCE-TABLE_20005-300x300.jpg",
- "assets/images/products/categories/meeting-tables/snap-conference/GraftTable-stackable-classroom5-350x350.jpg"
- ],
- "descriptionLong": [
- "Snap Conference is easy to reconfigure and store when not in use. Lockable castors provide easy mobility and stability when positioned.",
- "Round conference top with a smooth, well finished edge."
- ],
- "additionalInformation": {
- "Material": "Durable frame, round top",
- "Design": "Easy to reconfigure and store",
- "Castors": "Lockable castors for mobility and stability",
- "Edge": "Smooth, well finished edge",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/meeting-tables/snap-conference/SNAP-desks-floor-Plan-350x350.jpg",
- "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg"
- ]
- },
- {
- "id": 83,
- "name": "Criss Cross",
- "description": "Unique criss-cross steel base for modern appeal and stability. Round table top ideal for meetings and discussions. Perfect for offices, lounges, and collaborative spaces.",
- "image": "assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg",
- "alt": "Criss Cross",
- "category": "meeting-tables",
- "images": [
- "assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg",
- "assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg",
- "assets/images/products/categories/meeting-tables/criss-cross/Rocket-crisscross-moody-screen-350x350.jpg"
- ],
- "descriptionLong": [
- "Criss Cross features a unique criss‑cross steel base that provides modern appeal and stability. A round table top is ideal for meetings and discussions across teams.",
- "Perfect for offices, lounges, and collaborative spaces seeking a standout meeting piece."
- ],
- "additionalInformation": {
- "Material": "Criss‑cross steel base, premium round top",
- "Design": "Modern appeal with stable steel base",
- "Top": "Round top for meetings and discussions",
- "Use Cases": "Offices, lounges, collaborative spaces",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg",
- "assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg"
- ]
- },
- {
- "id": 84,
- "name": "Drone",
- "description": "Stylish design with versatile shapes to fit any meeting space. Creates a welcoming environment that supports smooth communication. Ideal for boardrooms, training and collaborative settings.",
- "image": "assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp",
- "alt": "Drone",
- "category": "meeting-tables",
- "images": [
- "assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp",
- "assets/images/products/categories/meeting-tables/drone/DRONE_INSTITUCIONAL_DONUT.webp",
- "assets/images/products/categories/meeting-tables/drone/F5_DRONE_05.webp",
- "assets/images/products/categories/meeting-tables/drone/F5_DRONE_06_M.webp"
- ],
- "descriptionLong": [
- "Drone features a stylish design with versatile shapes to fit any meeting space. It creates a welcoming environment that supports smooth communication among teams.",
- "Ideal for boardrooms, training, and collaborative settings."
- ],
- "additionalInformation": {
- "Material": "Premium materials, advanced construction",
- "Design": "Contemporary sleek aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/meeting-tables/drone/FDR27.webp",
- "assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp"
- ]
- },
- {
- "id": 85,
- "name": "Baron Laptop",
- "description": "Compact yet sturdy, ideal for laptops, reading, or quick tasks. Lightweight and easy to move for flexible use. Ideal for offices, reception areas, and collaboration spaces.",
- "image": "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp",
- "alt": "Baron Laptop",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp",
- "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp",
- "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_03_600x600px.webp",
- "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_04_600x600px.webp"
- ],
- "descriptionLong": [
- "Baron Laptop is compact yet sturdy—ideal for laptops, reading, or quick tasks. Lightweight and easy to move for flexible, on‑the‑fly positioning.",
- "Perfect for offices, reception areas, and collaboration spaces."
- ],
- "additionalInformation": {
- "Material": "Steel frame, premium tabletop",
- "Design": "Compact yet sturdy; lightweight and mobile",
- "Use Cases": "Laptops, reading, quick tasks",
- "Spaces": "Offices, reception areas, collaboration spaces",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp",
- "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp"
- ]
- },
- {
- "id": 86,
- "name": "Happy Hour",
- "description": "Elegant occasional table with clean, simple lines. Compact and stylish—ideal for casual conversations or quick breaks. Perfect for lounges, coffee areas, and collaborative zones.",
- "image": "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg",
- "alt": "Happy Hour",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg",
- "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR.jpg",
- "assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_01_600x600px.webp",
- "assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_02_600x600px.webp"
- ],
- "descriptionLong": [
- "Elegant occasional table with clean, simple lines. Compact and stylish for casual conversations or quick breaks.",
- "Ideal in lounges, coffee areas, and collaborative zones."
- ],
- "additionalInformation": {
- "Material": "Wood frame, premium tabletop",
- "Design": "Clean, simple lines; compact footprint",
- "Use Cases": "Casual conversations, quick breaks",
- "Spaces": "Lounges, coffee areas, collaborative zones",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_03_600x600px.webp",
- "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg"
- ]
- },
- {
- "id": 87,
- "name": "Salon Tablet",
- "description": "Blends seamlessly into modern offices and open‑plan settings. Perfect for flexible workspaces and people on the move. Lightweight and easy to position in lounges, booths, or reception areas.",
- "image": "assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png",
- "alt": "Salon Tablet",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png",
- "assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png",
- "assets/images/products/categories/occasional-tables/salon-tablet/Salon-Coffee-Table-300Wx450Dx722H-SIDE-VIEW-1024x1024.jpg"
- ],
- "descriptionLong": [
- "Seamlessly fits modern office and open‑plan environments. Ideal for flexible workstyles and people on the move.",
- "Lightweight; easy to position in lounges, booths, or receptions."
- ],
- "additionalInformation": {
- "Material": "Premium materials",
- "Design": "Lightweight; seamless in open‑plan settings",
- "Use Cases": "Flexible working, mobile touchdown",
- "Spaces": "Lounges, booths, reception areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png",
- "assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png"
- ]
- },
- {
- "id": 88,
- "name": "Sphere",
- "description": "Unique spherical table with Sphere design. Perfect for modern spaces and contemporary environments with distinctive styling and artistic appeal.",
- "image": "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg",
- "alt": "Sphere",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg"
- ],
- "descriptionLong": [
- "Make a statement with our Sphere table. This unique piece combines distinctive spherical design with artistic appeal, perfect for modern spaces and contemporary environments.",
- "The Sphere table features unique spherical construction, distinctive styling, and artistic design. The contemporary form and modern aesthetics create a striking focal point while providing functional surface space for modern living and artistic environments."
- ],
- "additionalInformation": {
- "Material": "Premium materials, spherical construction",
- "Design": "Unique artistic aesthetic",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg",
- "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg"
- ]
- },
- {
- "id": 89,
- "name": "Baron Oblong",
- "description": "Compact size, perfect for small spaces and flexible use. Easy to move beside lounge chairs or sofas. Ideal for working, reading, or casual coffee moments.",
- "image": "assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp",
- "alt": "Baron Oblong",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp",
- "assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp",
- "assets/images/products/categories/occasional-tables/baron-oblong/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Oblong_Laptop_Tables_Categories_Gallery_00_600x600px.webp"
- ],
- "descriptionLong": [
- "Compact occasional table sized for small spaces and flexible use. Easy to move and position beside lounge chairs or sofas.",
- "Ideal for working, reading, or casual coffee moments."
- ],
- "additionalInformation": {
- "Material": "Steel frame, premium tabletop",
- "Design": "Compact, easy to reposition",
- "Use Cases": "Working, reading, coffee moments",
- "Placement": "Beside lounge chairs or sofas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp",
- "assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp"
- ]
- },
- {
- "id": 90,
- "name": "Nota",
- "description": "Adjustable height system adapts to your space and needs. Lightweight and designed for flexibility and ease. Sleek, modern look that blends with any interior style.",
- "image": "assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg",
- "alt": "Nota",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg",
- "assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg",
- "assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg",
- "assets/images/products/categories/occasional-tables/nota/NOTA_010.jpg"
- ],
- "descriptionLong": [
- "Adjustable height occasional table for adaptable use. Lightweight design for flexible movement and ease.",
- "Sleek, modern aesthetic that suits any interior. Perfect for lounges, breakout areas, and casual settings."
- ],
- "additionalInformation": {
- "Material": "Premium materials",
- "Design": "Adjustable height; lightweight and flexible",
- "Use Cases": "Lounge, breakout, casual settings",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/nota/NOTA_017.jpg",
- "assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg",
- "assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg",
- "assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg"
- ]
- },
- {
- "id": 91,
- "name": "Selena",
- "description": "Circular occasional table that blends form and function. Available as both coffee and side table options. Designed to pair seamlessly with soft seating ranges.",
- "image": "assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp",
- "alt": "Selena",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp",
- "assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp",
- "assets/images/products/categories/occasional-tables/selena/SELENA.jpg"
- ],
- "descriptionLong": [
- "Circular occasional table blending form and function. Offered as coffee and side table variants.",
- "Pairs seamlessly with soft seating ranges."
- ],
- "additionalInformation": {
- "Material": "Wood frame, premium tabletop",
- "Design": "Circular form; coffee and side options",
- "Compatibility": "Pairs with soft seating ranges",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp",
- "assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp"
- ]
- },
- {
- "id": 92,
- "name": "Tray",
- "description": "A stylish choice for serving, display, or everyday use. Black laminate tray top with raised edges. Available in multiple sizes for lounges, receptions, or meeting areas.",
- "image": "assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg",
- "alt": "Tray",
- "category": "occasional-tables",
- "images": [
- "assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg",
- "assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg",
- "assets/images/products/categories/occasional-tables/tray/Tray-Coffee-Tables.jpg"
- ],
- "descriptionLong": [
- "Stylish tray table suited for serving and display. Black laminate tray top with raised edges for stability.",
- "Multiple sizes to fit lounges, receptions, or meeting areas."
- ],
- "additionalInformation": {
- "Material": "Steel frame; black laminate tray top",
- "Design": "Raised edges; stylish practical design",
- "Sizes": "Multiple sizes available",
- "Spaces": "Lounges, receptions, meeting areas",
- "Warranty": "5 years"
- },
- "galleryPairs": [
- "assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg",
- "assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg"
- ]
- }
- ],
- "categories": [
- {
- "id": "training-tables",
- "name": "Training Tables",
- "description": "Training tables for educational and collaborative environments"
- },
- {
- "id": "screens",
- "name": "Screens",
- "description": "Privacy screens and acoustic solutions for office spaces"
- },
- {
- "id": "executive-desks",
- "name": "Executive Desks",
- "description": "Premium executive desks for high-level professionals"
- },
- {
- "id": "executive-task-chair",
- "name": "Executive Task Chair",
- "description": "Premium executive task chairs for professional workspaces"
- },
- {
- "id": "visitors-chair",
- "name": "Visitors Chair",
- "description": "Comfortable chairs for visitors and guests"
- },
- {
- "id": "canteen-chairs",
- "name": "Canteen Chairs",
- "description": "Durable chairs for dining and break areas"
- },
- {
- "id": "soft-seating",
- "name": "Soft Seating",
- "description": "Comfortable soft seating solutions for lounge areas"
- },
- {
- "id": "barstools",
- "name": "Barstools",
- "description": "Stylish barstools for reception and casual seating"
- },
- {
- "id": "conference-chairs",
- "name": "Conference Chairs",
- "description": "Professional chairs for meeting rooms and conferences"
- },
- {
- "id": "training-chairs",
- "name": "Training Chairs",
- "description": "Ergonomic chairs designed for training environments"
- },
- {
- "id": "task-chairs",
- "name": "Task Chairs",
- "description": "Functional task chairs for daily office work"
- },
- {
- "id": "storage",
- "name": "Storage",
- "description": "Storage units, lockers, and organizational solutions"
- },
- {
- "id": "meeting-tables",
- "name": "Meeting Tables",
- "description": "Professional tables for meetings and conferences"
- },
- {
- "id": "work-station",
- "name": "Work Station",
- "description": "Complete workstation solutions for office environments"
- },
- {
- "id": "occasional-tables",
- "name": "Occasional Tables",
- "description": "Versatile occasional tables for various office needs"
- }
- ],
- "pagination": {
- "itemsPerPage": 16,
- "totalItems": 32,
- "currentPage": 1,
- "totalPages": 2
- }
-}
diff --git a/admin-dashboard/package.json b/admin-dashboard/package.json
deleted file mode 100644
index 914caa9..0000000
--- a/admin-dashboard/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "khy-admin",
- "version": "1.0.0",
- "description": "KHY Product Management Dashboard",
- "main": "src/index.html",
- "scripts": {
- "start": "python3 -m http.server 3000",
- "sync": "node scripts/sync-to-main.js",
- "dev": "python3 -m http.server 3000"
- },
- "dependencies": {
- "sharp": "^0.32.0"
- },
- "devDependencies": {
- "nodemon": "^3.0.0"
- },
- "keywords": [
- "admin",
- "dashboard",
- "product-management"
- ],
- "author": "KHY",
- "license": "MIT"
-}
diff --git a/admin-dashboard/product-detail.html b/admin-dashboard/product-detail.html
deleted file mode 100644
index d6c091a..0000000
--- a/admin-dashboard/product-detail.html
+++ /dev/null
@@ -1,272 +0,0 @@
-
-
-
-
-
-
-
diff --git a/assets/icons/admin.png b/assets/icons/admin.png
deleted file mode 100644
index 0a70489..0000000
Binary files a/assets/icons/admin.png and /dev/null differ
diff --git a/assets/icons/calendar.png b/assets/icons/calendar.png
deleted file mode 100644
index ff83c67..0000000
Binary files a/assets/icons/calendar.png and /dev/null differ
diff --git a/admin-dashboard/assets/icons/mail.png b/assets/icons/mail.png
similarity index 100%
rename from admin-dashboard/assets/icons/mail.png
rename to assets/icons/mail.png
diff --git a/admin-dashboard/assets/icons/phone2.png b/assets/icons/phone2.png
similarity index 100%
rename from admin-dashboard/assets/icons/phone2.png
rename to assets/icons/phone2.png
diff --git a/assets/icons/search.png b/assets/icons/search.png
deleted file mode 100644
index 57ece34..0000000
Binary files a/assets/icons/search.png and /dev/null differ
diff --git a/assets/icons/tag.png b/assets/icons/tag.png
deleted file mode 100644
index a020a6f..0000000
Binary files a/assets/icons/tag.png and /dev/null differ
diff --git a/assets/images/andreu_world.png b/assets/images/andreu_world.png
deleted file mode 100644
index c5e5f66..0000000
Binary files a/assets/images/andreu_world.png and /dev/null differ
diff --git a/assets/images/asgaard_sofa.png b/assets/images/asgaard_sofa.png
deleted file mode 100644
index 0b55ef0..0000000
Binary files a/assets/images/asgaard_sofa.png and /dev/null differ
diff --git a/assets/images/bene.png b/assets/images/bene.png
deleted file mode 100644
index 21d540f..0000000
Binary files a/assets/images/bene.png and /dev/null differ
diff --git a/assets/images/blog_post_1.png b/assets/images/blog_post_1.png
deleted file mode 100644
index 73c2647..0000000
Binary files a/assets/images/blog_post_1.png and /dev/null differ
diff --git a/assets/images/blog_thumb_1.png b/assets/images/blog_thumb_1.png
deleted file mode 100644
index 9896f63..0000000
Binary files a/assets/images/blog_thumb_1.png and /dev/null differ
diff --git a/assets/images/cecil_nurse.png b/assets/images/cecil_nurse.png
deleted file mode 100644
index fd700c4..0000000
Binary files a/assets/images/cecil_nurse.png and /dev/null differ
diff --git a/assets/images/chairs.jpg b/assets/images/chairs.jpg
deleted file mode 100644
index af8eef0..0000000
Binary files a/assets/images/chairs.jpg and /dev/null differ
diff --git a/assets/images/conference_room.jpg b/assets/images/conference_room.jpg
deleted file mode 100644
index 4767b50..0000000
Binary files a/assets/images/conference_room.jpg and /dev/null differ
diff --git a/assets/images/conference_rooms.jpg b/assets/images/conference_rooms.jpg
deleted file mode 100644
index e4bbb79..0000000
Binary files a/assets/images/conference_rooms.jpg and /dev/null differ
diff --git a/assets/images/dbg.png b/assets/images/dbg.png
deleted file mode 100644
index d80a408..0000000
Binary files a/assets/images/dbg.png and /dev/null differ
diff --git a/assets/images/first_homepage.jpg b/assets/images/first_homepage.jpg
deleted file mode 100644
index f88db7d..0000000
Binary files a/assets/images/first_homepage.jpg and /dev/null differ
diff --git a/assets/images/forma_5.png b/assets/images/forma_5.png
deleted file mode 100644
index ece711c..0000000
Binary files a/assets/images/forma_5.png and /dev/null differ
diff --git a/assets/images/glico.png b/assets/images/glico.png
deleted file mode 100644
index 5faff85..0000000
Binary files a/assets/images/glico.png and /dev/null differ
diff --git a/assets/images/google_accra.jpg b/assets/images/google_accra.jpg
deleted file mode 100644
index 9407454..0000000
Binary files a/assets/images/google_accra.jpg and /dev/null differ
diff --git a/assets/images/grow.png b/assets/images/grow.png
deleted file mode 100644
index 6ec2d70..0000000
Binary files a/assets/images/grow.png and /dev/null differ
diff --git a/admin-dashboard/assets/images/index_hero.jpg b/assets/images/index_hero.jpg
similarity index 100%
rename from admin-dashboard/assets/images/index_hero.jpg
rename to assets/images/index_hero.jpg
diff --git a/assets/images/kitchen.JPG b/assets/images/kitchen.JPG
deleted file mode 100644
index b08bab1..0000000
Binary files a/assets/images/kitchen.JPG and /dev/null differ
diff --git a/assets/images/lounge_chair.jpg b/assets/images/lounge_chair.jpg
deleted file mode 100644
index 4794e0c..0000000
Binary files a/assets/images/lounge_chair.jpg and /dev/null differ
diff --git a/assets/images/mail.png b/assets/images/mail.png
deleted file mode 100644
index 97d2e58..0000000
Binary files a/assets/images/mail.png and /dev/null differ
diff --git a/assets/images/norfund.png b/assets/images/norfund.png
deleted file mode 100644
index 63ef199..0000000
Binary files a/assets/images/norfund.png and /dev/null differ
diff --git a/assets/images/office_chair.jpg b/assets/images/office_chair.jpg
deleted file mode 100644
index 5bbe2e8..0000000
Binary files a/assets/images/office_chair.jpg and /dev/null differ
diff --git a/assets/images/our_story.jpg b/assets/images/our_story.jpg
deleted file mode 100644
index 7583f1d..0000000
Binary files a/assets/images/our_story.jpg and /dev/null differ
diff --git a/assets/images/outdoor_sofa_set.png b/assets/images/outdoor_sofa_set.png
deleted file mode 100644
index b7a00d8..0000000
Binary files a/assets/images/outdoor_sofa_set.png and /dev/null differ
diff --git a/assets/images/phone.png b/assets/images/phone.png
deleted file mode 100644
index 5ba105b..0000000
Binary files a/assets/images/phone.png and /dev/null differ
diff --git a/assets/images/pods.jpg b/assets/images/pods.jpg
deleted file mode 100644
index 0447f43..0000000
Binary files a/assets/images/pods.jpg and /dev/null differ
diff --git a/assets/images/potty.jpg b/assets/images/potty.jpg
deleted file mode 100644
index 1fe7884..0000000
Binary files a/assets/images/potty.jpg and /dev/null differ
diff --git a/admin-dashboard/assets/images/prod-catalog.jpg b/assets/images/prod-catalog.jpg
similarity index 100%
rename from admin-dashboard/assets/images/prod-catalog.jpg
rename to assets/images/prod-catalog.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_029.jpg b/assets/images/products/categories/barstools/abril/ABRIL_029.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_029.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_029.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_072.jpg b/assets/images/products/categories/barstools/abril/ABRIL_072.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_072.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_072.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_074.jpg b/assets/images/products/categories/barstools/abril/ABRIL_074.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_074.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_074.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_076.jpg b/assets/images/products/categories/barstools/abril/ABRIL_076.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_076.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_076.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_077.jpg b/assets/images/products/categories/barstools/abril/ABRIL_077.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_077.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_077.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_102.jpg b/assets/images/products/categories/barstools/abril/ABRIL_102.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_102.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_102.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_112.jpg b/assets/images/products/categories/barstools/abril/ABRIL_112.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/abril/ABRIL_112.jpg
rename to assets/images/products/categories/barstools/abril/ABRIL_112.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg b/assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg
rename to assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/faro/1024x500_Gallery_Faro.webp b/assets/images/products/categories/barstools/faro/1024x500_Gallery_Faro.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/faro/1024x500_Gallery_Faro.webp
rename to assets/images/products/categories/barstools/faro/1024x500_Gallery_Faro.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/faro/Cafe_Faro-Stool_Gallery_03_600x600px.jpg b/assets/images/products/categories/barstools/faro/Cafe_Faro-Stool_Gallery_03_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/faro/Cafe_Faro-Stool_Gallery_03_600x600px.jpg
rename to assets/images/products/categories/barstools/faro/Cafe_Faro-Stool_Gallery_03_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/faro/Faro-Barstool-Anthracite-Setting.jpg b/assets/images/products/categories/barstools/faro/Faro-Barstool-Anthracite-Setting.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/faro/Faro-Barstool-Anthracite-Setting.jpg
rename to assets/images/products/categories/barstools/faro/Faro-Barstool-Anthracite-Setting.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/faro/Faro-Barstool-Moss-02a.webp b/assets/images/products/categories/barstools/faro/Faro-Barstool-Moss-02a.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/faro/Faro-Barstool-Moss-02a.webp
rename to assets/images/products/categories/barstools/faro/Faro-Barstool-Moss-02a.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/faro/Faro-Barstool-Red-02a.jpg b/assets/images/products/categories/barstools/faro/Faro-Barstool-Red-02a.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/faro/Faro-Barstool-Red-02a.jpg
rename to assets/images/products/categories/barstools/faro/Faro-Barstool-Red-02a.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp b/assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp
rename to assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_BLACK_01.webp b/assets/images/products/categories/barstools/glove/GLOVE_HIGH_BLACK_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_BLACK_01.webp
rename to assets/images/products/categories/barstools/glove/GLOVE_HIGH_BLACK_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_01.webp b/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_01.webp
rename to assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_01.webp b/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_01.webp
rename to assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_02.webp b/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_02.webp
rename to assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_SEATPAD.webp b/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_SEATPAD.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_SEATPAD.webp
rename to assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_SEATPAD.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg b/assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg
rename to assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_09_600x600px.webp b/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_09_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_09_600x600px.webp
rename to assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_09_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_11_600x600px.jpg b/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_11_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_11_600x600px.jpg
rename to assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_11_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_13_600x600px.webp b/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_13_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_13_600x600px.webp
rename to assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_13_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_20_600x600px.webp b/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_20_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_20_600x600px.webp
rename to assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_20_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_3.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_3.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_3.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_3.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_4.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_4.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_4.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_4.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_5.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_5.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_5.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_5.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_1.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_1.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_2.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_2.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_2.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_2.webp
diff --git a/admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_3.webp b/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_3.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_3.webp
rename to assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_3.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_004.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_004.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_004.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_004.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_006.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_006.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_006.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_006.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_022.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_022.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_022.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_022.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_050.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_050.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_050.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_050.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_066.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_066.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_066.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_066.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_069.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_069.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_069.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_069.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_070.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_070.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_070.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_070.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_071.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_071.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_071.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_071.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_137.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_137.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_137.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_137.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_138.jpg b/assets/images/products/categories/canteen-chairs/abril/ABRIL_138.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/abril/ABRIL_138.jpg
rename to assets/images/products/categories/canteen-chairs/abril/ABRIL_138.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_022.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_022.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_022.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_022.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_037.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_037.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_037.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_037.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_039.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_039.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_039.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_039.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_045.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_045.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_045.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_045.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_048.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_048.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_048.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_048.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_095.jpg b/assets/images/products/categories/canteen-chairs/bika/BIKA_095.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/bika/BIKA_095.jpg
rename to assets/images/products/categories/canteen-chairs/bika/BIKA_095.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-02a.webp b/assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-02a.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-02a.webp
rename to assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-02a.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-Mood-02.jpg b/assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-Mood-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-Mood-02.jpg
rename to assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-Mood-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-Moss-Green-02.jpg b/assets/images/products/categories/canteen-chairs/costa/Costa-Moss-Green-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-Moss-Green-02.jpg
rename to assets/images/products/categories/canteen-chairs/costa/Costa-Moss-Green-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-White-02a.webp b/assets/images/products/categories/canteen-chairs/costa/Costa-White-02a.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-White-02a.webp
rename to assets/images/products/categories/canteen-chairs/costa/Costa-White-02a.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-White-Mood-03.webp b/assets/images/products/categories/canteen-chairs/costa/Costa-White-Mood-03.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa-White-Mood-03.webp
rename to assets/images/products/categories/canteen-chairs/costa/Costa-White-Mood-03.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp b/assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp
rename to assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_02.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_02.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLACK.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLACK.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLACK.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLACK.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLUE_02.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLUE_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLUE_02.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLUE_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_LACQUERED.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_LACQUERED.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_LACQUERED.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_LACQUERED.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_OCHER-01.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_OCHER-01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_OCHER-01.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_OCHER-01.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_WHITE_02.webp b/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_WHITE_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_WHITE_02.webp
rename to assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_WHITE_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg b/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg
rename to assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-04.jpg b/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-04.jpg
rename to assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-02.jpg b/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-02.jpg
rename to assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-03.jpg b/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-03.jpg
rename to assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-04.jpg b/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-04.jpg
rename to assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48033.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48033.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48033.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48033.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48034.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48034.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48034.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48034.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48009.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48009.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48009.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48009.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48014.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48014.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48014.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48014.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48015.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48015.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48015.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48015.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48064.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48064.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48064.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48064.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48065.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48065.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48065.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48065.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48066.webp b/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48066.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48066.webp
rename to assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48066.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp b/assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp
rename to assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp b/assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp
rename to assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-Moss-02.jpg b/assets/images/products/categories/canteen-chairs/riva/Riva-Moss-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-Moss-02.jpg
rename to assets/images/products/categories/canteen-chairs/riva/Riva-Moss-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-White-02.webp b/assets/images/products/categories/canteen-chairs/riva/Riva-White-02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/canteen-chairs/riva/Riva-White-02.webp
rename to assets/images/products/categories/canteen-chairs/riva/Riva-White-02.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-bu1489-andreu-world_2.webp b/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-bu1489-andreu-world_2.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-bu1489-andreu-world_2.webp
rename to assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-bu1489-andreu-world_2.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_2_1.webp b/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_2_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_2_1.webp
rename to assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_2_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_3_1.webp b/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_3_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_3_1.webp
rename to assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_3_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp b/assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_1 (1).webp b/assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_1 (1).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_1 (1).webp
rename to assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_1 (1).webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_2 (1).webp b/assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_2 (1).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_2 (1).webp
rename to assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_2 (1).webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_FLAT.webp b/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_FLAT.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_FLAT.webp
rename to assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_FLAT.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_GREY.webp b/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_GREY.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_GREY.webp
rename to assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_GREY.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_WHITE.webp b/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_WHITE.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_WHITE.webp
rename to assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_WHITE.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp b/assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp
rename to assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp b/assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp
rename to assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg b/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg
rename to assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-05.jpg b/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-05.jpg
rename to assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-02.jpg b/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-02.jpg
rename to assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-04.jpg b/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-04.jpg
rename to assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-01.jpg b/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-01.jpg
rename to assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-02.jpg b/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-02.jpg
rename to assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg b/assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg
rename to assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-Chr_Whte-HB-02a.jpg b/assets/images/products/categories/conference-chairs/classical/Classical-Chr_Whte-HB-02a.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-Chr_Whte-HB-02a.jpg
rename to assets/images/products/categories/conference-chairs/classical/Classical-Chr_Whte-HB-02a.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-02.jpg b/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-02.jpg
rename to assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-04.jpg b/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-04.jpg
rename to assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-05.jpg b/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-05.jpg
rename to assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Tan-New-02.jpg b/assets/images/products/categories/conference-chairs/classical/Classical-HB-Tan-New-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Classical-HB-Tan-New-02.jpg
rename to assets/images/products/categories/conference-chairs/classical/Classical-HB-Tan-New-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Seating_Classical_Black_Gallery_05_600x600px.webp b/assets/images/products/categories/conference-chairs/classical/Seating_Classical_Black_Gallery_05_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Seating_Classical_Black_Gallery_05_600x600px.webp
rename to assets/images/products/categories/conference-chairs/classical/Seating_Classical_Black_Gallery_05_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/classical/Seating_Classical_Grey_Black_Gallery_01_600x600px.webp b/assets/images/products/categories/conference-chairs/classical/Seating_Classical_Grey_Black_Gallery_01_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/classical/Seating_Classical_Grey_Black_Gallery_01_600x600px.webp
rename to assets/images/products/categories/conference-chairs/classical/Seating_Classical_Grey_Black_Gallery_01_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/andreu-world-flex-executive-bu1841_5.webp b/assets/images/products/categories/conference-chairs/flex/andreu-world-flex-executive-bu1841_5.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/andreu-world-flex-executive-bu1841_5.webp
rename to assets/images/products/categories/conference-chairs/flex/andreu-world-flex-executive-bu1841_5.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp b/assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1844_armchair_1.webp b/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1844_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1844_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1844_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1845_armchair_1.webp b/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1845_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1845_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1845_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp b/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1860_armchair_1.webp b/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1860_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1860_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1860_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1861_armchair_1.webp b/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1861_armchair_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1861_armchair_1.webp
rename to assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1861_armchair_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_22_600x600px.webp b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_22_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_22_600x600px.webp
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_22_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_27_600x600px.jpg b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_27_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_27_600x600px.jpg
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_27_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_32_600x600px.webp b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_32_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_32_600x600px.webp
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_32_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_33_600x600px.jpg b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_33_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_33_600x600px.jpg
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_33_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_36_600x600px.webp b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_36_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_36_600x600px.webp
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_36_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_37_600x600px.jpg b/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_37_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_37_600x600px.jpg
rename to assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_37_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg b/assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg
rename to assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-4.jpg b/assets/images/products/categories/conference-chairs/messi/MESSI-4.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-4.jpg
rename to assets/images/products/categories/conference-chairs/messi/MESSI-4.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-5.jpg b/assets/images/products/categories/conference-chairs/messi/MESSI-5.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-5.jpg
rename to assets/images/products/categories/conference-chairs/messi/MESSI-5.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-6.jpg b/assets/images/products/categories/conference-chairs/messi/MESSI-6.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-6.jpg
rename to assets/images/products/categories/conference-chairs/messi/MESSI-6.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-7.jpg b/assets/images/products/categories/conference-chairs/messi/MESSI-7.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/messi/MESSI-7.jpg
rename to assets/images/products/categories/conference-chairs/messi/MESSI-7.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg b/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg
rename to assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-03.jpg b/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-03.jpg
rename to assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-05.jpg b/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-05.jpg
rename to assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg b/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg
rename to assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-03.webp b/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-03.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-03.webp
rename to assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-03.webp
diff --git a/admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg b/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg
rename to assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg b/assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg
rename to assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg b/assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg
rename to assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_07_600x600px.jpg b/assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_07_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_07_600x600px.jpg
rename to assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_07_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg b/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg
rename to assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-4.jpg b/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-4.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-4.jpg
rename to assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-4.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-5.jpg b/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-5.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-5.jpg
rename to assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-5.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-7.jpg b/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-7.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-7.jpg
rename to assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-7.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK-1.jpg b/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK-1.jpg
rename to assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK.jpg b/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK.jpg
rename to assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg b/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg
rename to assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg b/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg
rename to assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-OPEN-PLAN-1.jpg b/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-OPEN-PLAN-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-OPEN-PLAN-1.jpg
rename to assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-OPEN-PLAN-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg b/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg
rename to assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-ACACIA-AND-BLACK.jpg b/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-ACACIA-AND-BLACK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-ACACIA-AND-BLACK.jpg
rename to assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-ACACIA-AND-BLACK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-DARK-EUCALYPTUS-AND-BLACK.jpg b/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-DARK-EUCALYPTUS-AND-BLACK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-DARK-EUCALYPTUS-AND-BLACK.jpg
rename to assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-DARK-EUCALYPTUS-AND-BLACK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-NATURAL-WALNUT.jpg b/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-NATURAL-WALNUT.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-NATURAL-WALNUT.jpg
rename to assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-NATURAL-WALNUT.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_00_600x600px.jpg b/assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_00_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_00_600x600px.jpg
rename to assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_00_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_02_600x600px.jpg b/assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_02_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_02_600x600px.jpg
rename to assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_02_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/92dpi-12-300x300.jpg b/assets/images/products/categories/executive-desks/evolution-l-shape/92dpi-12-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/92dpi-12-300x300.jpg
rename to assets/images/products/categories/executive-desks/evolution-l-shape/92dpi-12-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/MTC-minerals-IXAXA-12-2017-2105-800x800.jpg b/assets/images/products/categories/executive-desks/evolution-l-shape/MTC-minerals-IXAXA-12-2017-2105-800x800.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/MTC-minerals-IXAXA-12-2017-2105-800x800.jpg
rename to assets/images/products/categories/executive-desks/evolution-l-shape/MTC-minerals-IXAXA-12-2017-2105-800x800.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg b/assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg
rename to assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png b/assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png
rename to assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp b/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp
rename to assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_04.webp b/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_04.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_04.webp
rename to assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_04.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_06.webp b/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_06.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_06.webp
rename to assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_06.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_09.webp b/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_09.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_09.webp
rename to assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_09.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_11.webp b/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_11.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_11.webp
rename to assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_11.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-02.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-02.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Amber-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-03.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-03.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Amber-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-05.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Amber-05.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Amber-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Black-01.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Black-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Black-01.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Black-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Black-02.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Black-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Black-02.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Black-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Black-03.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Black-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Black-03.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Black-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Setting.jpg b/assets/images/products/categories/executive-task-chair/accord/Accord-Setting.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/accord/Accord-Setting.jpg
rename to assets/images/products/categories/executive-task-chair/accord/Accord-Setting.jpg
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp b/assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp
rename to assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_02.webp b/assets/images/products/categories/executive-task-chair/allure/ALLURE_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_02.webp
rename to assets/images/products/categories/executive-task-chair/allure/ALLURE_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_CONFERENCE_01.webp b/assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_CONFERENCE_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_CONFERENCE_01.webp
rename to assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_CONFERENCE_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_OSCILO_02.webp b/assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_OSCILO_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_OSCILO_02.webp
rename to assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_OSCILO_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_LOW_CONFERENCE_02.webp b/assets/images/products/categories/executive-task-chair/allure/ALLURE_LOW_CONFERENCE_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/allure/ALLURE_LOW_CONFERENCE_02.webp
rename to assets/images/products/categories/executive-task-chair/allure/ALLURE_LOW_CONFERENCE_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp b/assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp
rename to assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp b/assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp
rename to assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp
diff --git a/admin-dashboard/assets/images/products/categories/executive-task-chair/riya/csm_riya__7__3b06473471.webp b/assets/images/products/categories/executive-task-chair/riya/csm_riya__7__3b06473471.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/executive-task-chair/riya/csm_riya__7__3b06473471.webp
rename to assets/images/products/categories/executive-task-chair/riya/csm_riya__7__3b06473471.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg b/assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg
rename to assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/criss-cross/Rocket-crisscross-moody-screen-350x350.jpg b/assets/images/products/categories/meeting-tables/criss-cross/Rocket-crisscross-moody-screen-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/criss-cross/Rocket-crisscross-moody-screen-350x350.jpg
rename to assets/images/products/categories/meeting-tables/criss-cross/Rocket-crisscross-moody-screen-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg b/assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg
rename to assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp b/assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp
rename to assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/drone/DRONE_INSTITUCIONAL_DONUT.webp b/assets/images/products/categories/meeting-tables/drone/DRONE_INSTITUCIONAL_DONUT.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/drone/DRONE_INSTITUCIONAL_DONUT.webp
rename to assets/images/products/categories/meeting-tables/drone/DRONE_INSTITUCIONAL_DONUT.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/drone/F5_DRONE_05.webp b/assets/images/products/categories/meeting-tables/drone/F5_DRONE_05.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/drone/F5_DRONE_05.webp
rename to assets/images/products/categories/meeting-tables/drone/F5_DRONE_05.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/drone/F5_DRONE_06_M.webp b/assets/images/products/categories/meeting-tables/drone/F5_DRONE_06_M.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/drone/F5_DRONE_06_M.webp
rename to assets/images/products/categories/meeting-tables/drone/F5_DRONE_06_M.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/drone/FDR27.webp b/assets/images/products/categories/meeting-tables/drone/FDR27.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/drone/FDR27.webp
rename to assets/images/products/categories/meeting-tables/drone/FDR27.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/drone/FDR34.webp b/assets/images/products/categories/meeting-tables/drone/FDR34.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/drone/FDR34.webp
rename to assets/images/products/categories/meeting-tables/drone/FDR34.webp
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg b/assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg
rename to assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png b/assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png
rename to assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/evolution-steel/web-1015-300x192.jpg b/assets/images/products/categories/meeting-tables/evolution-steel/web-1015-300x192.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/evolution-steel/web-1015-300x192.jpg
rename to assets/images/products/categories/meeting-tables/evolution-steel/web-1015-300x192.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/FlipTop-mobile-CONFERENCE-TABLE_20005-300x300.jpg b/assets/images/products/categories/meeting-tables/snap-conference/FlipTop-mobile-CONFERENCE-TABLE_20005-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/FlipTop-mobile-CONFERENCE-TABLE_20005-300x300.jpg
rename to assets/images/products/categories/meeting-tables/snap-conference/FlipTop-mobile-CONFERENCE-TABLE_20005-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/GraftTable-stackable-classroom5-350x350.jpg b/assets/images/products/categories/meeting-tables/snap-conference/GraftTable-stackable-classroom5-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/GraftTable-stackable-classroom5-350x350.jpg
rename to assets/images/products/categories/meeting-tables/snap-conference/GraftTable-stackable-classroom5-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/SNAP-desks-floor-Plan-350x350.jpg b/assets/images/products/categories/meeting-tables/snap-conference/SNAP-desks-floor-Plan-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/SNAP-desks-floor-Plan-350x350.jpg
rename to assets/images/products/categories/meeting-tables/snap-conference/SNAP-desks-floor-Plan-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg b/assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg
rename to assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-72dpi-49.jpg b/assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-72dpi-49.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-72dpi-49.jpg
rename to assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-72dpi-49.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp b/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp
rename to assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp b/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp
rename to assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_03_600x600px.webp b/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_03_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_03_600x600px.webp
rename to assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_03_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_04_600x600px.webp b/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_04_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_04_600x600px.webp
rename to assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_04_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp b/assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp
rename to assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-oblong/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Oblong_Laptop_Tables_Categories_Gallery_00_600x600px.webp b/assets/images/products/categories/occasional-tables/baron-oblong/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Oblong_Laptop_Tables_Categories_Gallery_00_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-oblong/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Oblong_Laptop_Tables_Categories_Gallery_00_600x600px.webp
rename to assets/images/products/categories/occasional-tables/baron-oblong/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Oblong_Laptop_Tables_Categories_Gallery_00_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp b/assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp
rename to assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg b/assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg
rename to assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR.jpg b/assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR.jpg
rename to assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_01_600x600px.webp b/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_01_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_01_600x600px.webp
rename to assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_01_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_02_600x600px.webp b/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_02_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_02_600x600px.webp
rename to assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_02_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_03_600x600px.webp b/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_03_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_03_600x600px.webp
rename to assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_03_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_04_600x600px.webp b/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_04_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_04_600x600px.webp
rename to assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_04_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_010.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_010.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_010.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_010.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_017.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_017.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_017.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_017.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_029.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_029.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_029.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_029.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_031.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_031.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_031.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_031.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_033.jpg b/assets/images/products/categories/occasional-tables/nota/NOTA_033.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/nota/NOTA_033.jpg
rename to assets/images/products/categories/occasional-tables/nota/NOTA_033.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png b/assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png
rename to assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/salon-tablet/Salon-Coffee-Table-300Wx450Dx722H-SIDE-VIEW-1024x1024.jpg b/assets/images/products/categories/occasional-tables/salon-tablet/Salon-Coffee-Table-300Wx450Dx722H-SIDE-VIEW-1024x1024.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/salon-tablet/Salon-Coffee-Table-300Wx450Dx722H-SIDE-VIEW-1024x1024.jpg
rename to assets/images/products/categories/occasional-tables/salon-tablet/Salon-Coffee-Table-300Wx450Dx722H-SIDE-VIEW-1024x1024.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png b/assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png
rename to assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp b/assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp
rename to assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp b/assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp
rename to assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/selena/SELENA.jpg b/assets/images/products/categories/occasional-tables/selena/SELENA.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/selena/SELENA.jpg
rename to assets/images/products/categories/occasional-tables/selena/SELENA.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/sphere/Sphere.jpg b/assets/images/products/categories/occasional-tables/sphere/Sphere.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/sphere/Sphere.jpg
rename to assets/images/products/categories/occasional-tables/sphere/Sphere.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg b/assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg
rename to assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg b/assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg
rename to assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg
diff --git a/admin-dashboard/assets/images/products/categories/occasional-tables/tray/Tray-Coffee-Tables.jpg b/assets/images/products/categories/occasional-tables/tray/Tray-Coffee-Tables.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/occasional-tables/tray/Tray-Coffee-Tables.jpg
rename to assets/images/products/categories/occasional-tables/tray/Tray-Coffee-Tables.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/cocoon/MosheCapital-Nov2019-LR-4323-350x350.jpg b/assets/images/products/categories/screens/cocoon/MosheCapital-Nov2019-LR-4323-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/cocoon/MosheCapital-Nov2019-LR-4323-350x350.jpg
rename to assets/images/products/categories/screens/cocoon/MosheCapital-Nov2019-LR-4323-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg b/assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg
rename to assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg b/assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg
rename to assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg b/assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg
rename to assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg b/assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg
rename to assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp b/assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp
rename to assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp
diff --git a/admin-dashboard/assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-SCREEN-1.jpg b/assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-SCREEN-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-SCREEN-1.jpg
rename to assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-SCREEN-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp b/assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp
rename to assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp
diff --git a/admin-dashboard/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp b/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp
rename to assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp
diff --git a/admin-dashboard/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp b/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp
rename to assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp
diff --git a/admin-dashboard/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-3.webp b/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-3.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/screens/simple/SIMPLE-SCREEN-3.webp
rename to assets/images/products/categories/screens/simple/SIMPLE-SCREEN-3.webp
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_009.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_009.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_009.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_009.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_011.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_011.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_011.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_011.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_013.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_013.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_013.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_013.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_019.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_019.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_019.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_019.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_028.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_028.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_028.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_028.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_099.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_099.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_099.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_099.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_103.jpg b/assets/images/products/categories/soft-seating/amivera/AMIVERA_103.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/AMIVERA_103.jpg
rename to assets/images/products/categories/soft-seating/amivera/AMIVERA_103.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/amivera/Amivera_gallery_sofas-tables-office.jpg b/assets/images/products/categories/soft-seating/amivera/Amivera_gallery_sofas-tables-office.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/amivera/Amivera_gallery_sofas-tables-office.jpg
rename to assets/images/products/categories/soft-seating/amivera/Amivera_gallery_sofas-tables-office.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_002.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_002.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_002.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_002.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_011.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_011.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_011.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_011.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_015.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_015.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_015.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_015.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_035.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_035.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_035.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_035.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_036.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_036.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_036.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_036.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_043.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_043.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_043.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_043.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_050.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_050.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_050.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_050.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_056.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_056.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_056.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_056.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_057.jpg b/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_057.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_057.jpg
rename to assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_057.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_039.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_039.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_039.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_039.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_040.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_040.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_040.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_040.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_042.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_042.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_042.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_042.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_054.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_054.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_054.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_054.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_055.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_055.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_055.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_055.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_064.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_064.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_064.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_064.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_066.jpg b/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_066.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_066.jpg
rename to assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_066.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg b/assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg
rename to assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-3-1.jpg b/assets/images/products/categories/soft-seating/breeze/BREEZE-3-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-3-1.jpg
rename to assets/images/products/categories/soft-seating/breeze/BREEZE-3-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-4-1.jpg b/assets/images/products/categories/soft-seating/breeze/BREEZE-4-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-4-1.jpg
rename to assets/images/products/categories/soft-seating/breeze/BREEZE-4-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-9.jpg b/assets/images/products/categories/soft-seating/breeze/BREEZE-9.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/BREEZE-9.jpg
rename to assets/images/products/categories/soft-seating/breeze/BREEZE-9.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-01.jpg b/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-01.jpg
rename to assets/images/products/categories/soft-seating/breeze/Breeze-Grey-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02-2-768x768.jpg b/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02-2-768x768.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02-2-768x768.jpg
rename to assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02-2-768x768.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02.jpg b/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02.jpg
rename to assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze.jpg b/assets/images/products/categories/soft-seating/breeze/Breeze.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/breeze/Breeze.jpg
rename to assets/images/products/categories/soft-seating/breeze/Breeze.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_004.jpg b/assets/images/products/categories/soft-seating/cyl/CYL_004.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_004.jpg
rename to assets/images/products/categories/soft-seating/cyl/CYL_004.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_019.jpg b/assets/images/products/categories/soft-seating/cyl/CYL_019.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_019.jpg
rename to assets/images/products/categories/soft-seating/cyl/CYL_019.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_028.jpg b/assets/images/products/categories/soft-seating/cyl/CYL_028.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_028.jpg
rename to assets/images/products/categories/soft-seating/cyl/CYL_028.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_029.jpg b/assets/images/products/categories/soft-seating/cyl/CYL_029.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_029.jpg
rename to assets/images/products/categories/soft-seating/cyl/CYL_029.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_030.jpg b/assets/images/products/categories/soft-seating/cyl/CYL_030.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_030.jpg
rename to assets/images/products/categories/soft-seating/cyl/CYL_030.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_033.jpg b/assets/images/products/categories/soft-seating/cyl/CYL_033.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/cyl/CYL_033.jpg
rename to assets/images/products/categories/soft-seating/cyl/CYL_033.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-back.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-back.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-back.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-back.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-front-sml-600x600.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-front-sml-600x600.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-front-sml-600x600.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-front-sml-600x600.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-angled-300x300.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-angled-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-angled-300x300.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-angled-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-back-300x300.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-back-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-back-300x300.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-back-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-migraton-indigo-front-ml.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-migraton-indigo-front-ml.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-migraton-indigo-front-ml.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-migraton-indigo-front-ml.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-300x300.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-300x300.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-600x600.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-600x600.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-600x600.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-600x600.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-back-300x300.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-back-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-back-300x300.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-back-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-front-sml-300x300.jpg b/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-front-sml-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-front-sml-300x300.jpg
rename to assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-front-sml-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg b/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg
rename to assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-3-1.jpg b/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-3-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-3-1.jpg
rename to assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-3-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-4-1.jpg b/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-4-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-4-1.jpg
rename to assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-4-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-5.jpg b/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-5.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-5.jpg
rename to assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-5.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-SCENE-1.jpg b/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-SCENE-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-SCENE-1.jpg
rename to assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-SCENE-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HopScotch.jpg b/assets/images/products/categories/soft-seating/hopscotch/HopScotch.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/hopscotch/HopScotch.jpg
rename to assets/images/products/categories/soft-seating/hopscotch/HopScotch.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/230130157517-2.jpg b/assets/images/products/categories/soft-seating/marina/230130157517-2.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/230130157517-2.jpg
rename to assets/images/products/categories/soft-seating/marina/230130157517-2.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_001.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_001.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_007.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_007.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_007.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_007.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_009.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_009.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_009.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_009.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_011.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_011.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_011.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_011.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_013.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_013.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_013.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_013.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_014.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_014.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_014.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_014.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_015.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_015.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_015.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_015.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_016.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_016.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_016.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_016.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_017.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_017.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_017.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_017.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_036.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_036.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_036.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_036.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_048.jpg b/assets/images/products/categories/soft-seating/marina/MARINA_048.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/marina/MARINA_048.jpg
rename to assets/images/products/categories/soft-seating/marina/MARINA_048.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg b/assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg
rename to assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me02-768x375.jpg b/assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me02-768x375.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me02-768x375.jpg
rename to assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me02-768x375.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg b/assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg
rename to assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_014.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_014.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_014.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_014.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_023.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_023.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_023.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_023.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_049.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_049.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_049.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_049.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_050.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_050.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_050.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_050.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_052.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_052.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_052.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_052.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_053.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_053.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_053.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_053.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_054.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_054.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_054.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_054.jpg
diff --git a/admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_059.jpg b/assets/images/products/categories/soft-seating/pausa/PAUSA_059.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/soft-seating/pausa/PAUSA_059.jpg
rename to assets/images/products/categories/soft-seating/pausa/PAUSA_059.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_01.webp b/assets/images/products/categories/storage/lockers/CAMPUS_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_01.webp
rename to assets/images/products/categories/storage/lockers/CAMPUS_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_02.webp b/assets/images/products/categories/storage/lockers/CAMPUS_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_02.webp
rename to assets/images/products/categories/storage/lockers/CAMPUS_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_03.webp b/assets/images/products/categories/storage/lockers/CAMPUS_03.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_03.webp
rename to assets/images/products/categories/storage/lockers/CAMPUS_03.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_04.webp b/assets/images/products/categories/storage/lockers/CAMPUS_04.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_04.webp
rename to assets/images/products/categories/storage/lockers/CAMPUS_04.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_05.webp b/assets/images/products/categories/storage/lockers/CAMPUS_05.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/CAMPUS_05.webp
rename to assets/images/products/categories/storage/lockers/CAMPUS_05.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/COVER.jpg b/assets/images/products/categories/storage/lockers/COVER.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/COVER.jpg
rename to assets/images/products/categories/storage/lockers/COVER.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300 (1).png b/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300 (1).png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300 (1).png
rename to assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300 (1).png
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300.png b/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300.png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300.png
rename to assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300.png
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-912-WT.png b/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-912-WT.png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-912-WT.png
rename to assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-912-WT.png
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/SYS163017-001-1-300x300.jpg b/assets/images/products/categories/storage/lockers/SYS163017-001-1-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/SYS163017-001-1-300x300.jpg
rename to assets/images/products/categories/storage/lockers/SYS163017-001-1-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg b/assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg
rename to assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/lockers/image001.png b/assets/images/products/categories/storage/lockers/image001.png
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/lockers/image001.png
rename to assets/images/products/categories/storage/lockers/image001.png
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/1.webp b/assets/images/products/categories/storage/melamine-storage/1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/1.webp
rename to assets/images/products/categories/storage/melamine-storage/1.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/25.webp b/assets/images/products/categories/storage/melamine-storage/25.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/25.webp
rename to assets/images/products/categories/storage/melamine-storage/25.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/26.webp b/assets/images/products/categories/storage/melamine-storage/26.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/26.webp
rename to assets/images/products/categories/storage/melamine-storage/26.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/29.webp b/assets/images/products/categories/storage/melamine-storage/29.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/29.webp
rename to assets/images/products/categories/storage/melamine-storage/29.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/30.webp b/assets/images/products/categories/storage/melamine-storage/30.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/30.webp
rename to assets/images/products/categories/storage/melamine-storage/30.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/4.webp b/assets/images/products/categories/storage/melamine-storage/4.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/4.webp
rename to assets/images/products/categories/storage/melamine-storage/4.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/5.webp b/assets/images/products/categories/storage/melamine-storage/5.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/5.webp
rename to assets/images/products/categories/storage/melamine-storage/5.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/melamine-storage/COVER.jpg b/assets/images/products/categories/storage/melamine-storage/COVER.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/melamine-storage/COVER.jpg
rename to assets/images/products/categories/storage/melamine-storage/COVER.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/metal-storage/1024x500_Gallery_Metal-Lockers_1.webp b/assets/images/products/categories/storage/metal-storage/1024x500_Gallery_Metal-Lockers_1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/metal-storage/1024x500_Gallery_Metal-Lockers_1.webp
rename to assets/images/products/categories/storage/metal-storage/1024x500_Gallery_Metal-Lockers_1.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/metal-storage/400x400_Thumbnail_Storage_MetalLocker.jpg b/assets/images/products/categories/storage/metal-storage/400x400_Thumbnail_Storage_MetalLocker.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/metal-storage/400x400_Thumbnail_Storage_MetalLocker.jpg
rename to assets/images/products/categories/storage/metal-storage/400x400_Thumbnail_Storage_MetalLocker.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/metal-storage/COVER.jpg b/assets/images/products/categories/storage/metal-storage/COVER.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/metal-storage/COVER.jpg
rename to assets/images/products/categories/storage/metal-storage/COVER.jpg
diff --git a/admin-dashboard/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_03_600x600px.webp b/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_03_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_03_600x600px.webp
rename to assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_03_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_07_600x600px.webp b/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_07_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_07_600x600px.webp
rename to assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_07_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_08_600x600px.webp b/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_08_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_08_600x600px.webp
rename to assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_08_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Black-Simple-02.jpg b/assets/images/products/categories/task-chairs/chic/Chic-Black-Simple-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Black-Simple-02.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic-Black-Simple-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-01-768x770.jpg b/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-01-768x770.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-01-768x770.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-01-768x770.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-03-768x768.jpg b/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-03-768x768.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-03-768x768.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-03-768x768.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-04-768x768.jpg b/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-04-768x768.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-04-768x768.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-04-768x768.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-05-768x768.jpg b/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-05-768x768.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-05-768x768.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-05-768x768.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp b/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp
rename to assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_03_600x600px.webp b/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_03_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_03_600x600px.webp
rename to assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_03_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_10_600x600px.jpg b/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_10_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_10_600x600px.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_10_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_12_600x600px.webp b/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_12_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_12_600x600px.webp
rename to assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_12_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Grey_Gallery_09_600x600px.jpg b/assets/images/products/categories/task-chairs/chic/Chic_Grey_Gallery_09_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/chic/Chic_Grey_Gallery_09_600x600px.jpg
rename to assets/images/products/categories/task-chairs/chic/Chic_Grey_Gallery_09_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-02.jpg b/assets/images/products/categories/task-chairs/dhl/DHL-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-02.jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-04 (1).jpg b/assets/images/products/categories/task-chairs/dhl/DHL-04 (1).jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-04 (1).jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-04 (1).jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-01.jpg b/assets/images/products/categories/task-chairs/dhl/DHL-HB-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-01.jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-HB-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-02.jpg b/assets/images/products/categories/task-chairs/dhl/DHL-HB-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-02.jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-HB-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-03.jpg b/assets/images/products/categories/task-chairs/dhl/DHL-HB-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-03.jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-HB-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-04.jpg b/assets/images/products/categories/task-chairs/dhl/DHL-HB-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-04.jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-HB-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-05.jpg b/assets/images/products/categories/task-chairs/dhl/DHL-HB-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dhl/DHL-HB-05.jpg
rename to assets/images/products/categories/task-chairs/dhl/DHL-HB-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_06.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_06.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_06.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_06.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_07.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_07.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_07.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_07.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_08.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_08.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_08.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_08.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_09.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_09.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_09.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_09.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_10.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_10.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_10.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_10.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_HEADREST.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_HEADREST.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_HEADREST.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_HEADREST.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_01.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_01.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_07.webp b/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_07.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_07.webp
rename to assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_07.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_22_43704.webp b/assets/images/products/categories/task-chairs/flexi/FX_1104_087_22_43704.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_22_43704.webp
rename to assets/images/products/categories/task-chairs/flexi/FX_1104_087_22_43704.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43688.webp b/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43688.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43688.webp
rename to assets/images/products/categories/task-chairs/flexi/FX_1104_087_43688.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43691.webp b/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43691.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43691.webp
rename to assets/images/products/categories/task-chairs/flexi/FX_1104_087_43691.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43694.webp b/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43694.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/FX_1104_087_43694.webp
rename to assets/images/products/categories/task-chairs/flexi/FX_1104_087_43694.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp b/assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp
rename to assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42764.webp b/assets/images/products/categories/task-chairs/flexi/fx_1103a_42764.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42764.webp
rename to assets/images/products/categories/task-chairs/flexi/fx_1103a_42764.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42766.webp b/assets/images/products/categories/task-chairs/flexi/fx_1103a_42766.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42766.webp
rename to assets/images/products/categories/task-chairs/flexi/fx_1103a_42766.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42770.webp b/assets/images/products/categories/task-chairs/flexi/fx_1103a_42770.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1103a_42770.webp
rename to assets/images/products/categories/task-chairs/flexi/fx_1103a_42770.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1104_42826.webp b/assets/images/products/categories/task-chairs/flexi/fx_1104_42826.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/flexi/fx_1104_42826.webp
rename to assets/images/products/categories/task-chairs/flexi/fx_1104_42826.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/LINK-BACK.jpg b/assets/images/products/categories/task-chairs/link/LINK-BACK.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/LINK-BACK.jpg
rename to assets/images/products/categories/task-chairs/link/LINK-BACK.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/LINK-DETAIL-3.jpg b/assets/images/products/categories/task-chairs/link/LINK-DETAIL-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/LINK-DETAIL-3.jpg
rename to assets/images/products/categories/task-chairs/link/LINK-DETAIL-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/LINK-FRONT-ANGLE.jpg b/assets/images/products/categories/task-chairs/link/LINK-FRONT-ANGLE.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/LINK-FRONT-ANGLE.jpg
rename to assets/images/products/categories/task-chairs/link/LINK-FRONT-ANGLE.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/Link-01.jpg b/assets/images/products/categories/task-chairs/link/Link-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/Link-01.jpg
rename to assets/images/products/categories/task-chairs/link/Link-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/Link-02.jpg b/assets/images/products/categories/task-chairs/link/Link-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/Link-02.jpg
rename to assets/images/products/categories/task-chairs/link/Link-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/Link-04.jpg b/assets/images/products/categories/task-chairs/link/Link-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/Link-04.jpg
rename to assets/images/products/categories/task-chairs/link/Link-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/link/Link-05.jpg b/assets/images/products/categories/task-chairs/link/Link-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/link/Link-05.jpg
rename to assets/images/products/categories/task-chairs/link/Link-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/SP_1501_52751.webp b/assets/images/products/categories/task-chairs/space/SP_1501_52751.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/SP_1501_52751.webp
rename to assets/images/products/categories/task-chairs/space/SP_1501_52751.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/SP_1501_52753.webp b/assets/images/products/categories/task-chairs/space/SP_1501_52753.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/SP_1501_52753.webp
rename to assets/images/products/categories/task-chairs/space/SP_1501_52753.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/SP_1501_52755.webp b/assets/images/products/categories/task-chairs/space/SP_1501_52755.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/SP_1501_52755.webp
rename to assets/images/products/categories/task-chairs/space/SP_1501_52755.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46494.webp b/assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46494.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46494.webp
rename to assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46494.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46499.webp b/assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46499.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46499.webp
rename to assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46499.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1502_093_44599_.webp b/assets/images/products/categories/task-chairs/space/sp_1502_093_44599_.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1502_093_44599_.webp
rename to assets/images/products/categories/task-chairs/space/sp_1502_093_44599_.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1522_093_44611_.webp b/assets/images/products/categories/task-chairs/space/sp_1522_093_44611_.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1522_093_44611_.webp
rename to assets/images/products/categories/task-chairs/space/sp_1522_093_44611_.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1522_093_44618_.webp b/assets/images/products/categories/task-chairs/space/sp_1522_093_44618_.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1522_093_44618_.webp
rename to assets/images/products/categories/task-chairs/space/sp_1522_093_44618_.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_47876_2.webp b/assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_47876_2.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_47876_2.webp
rename to assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_47876_2.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_48219.webp b/assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_48219.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_48219.webp
rename to assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_48219.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp b/assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp
rename to assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1401_41507.webp b/assets/images/products/categories/task-chairs/victory/VI_1401_41507.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1401_41507.webp
rename to assets/images/products/categories/task-chairs/victory/VI_1401_41507.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1411_41480.webp b/assets/images/products/categories/task-chairs/victory/VI_1411_41480.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1411_41480.webp
rename to assets/images/products/categories/task-chairs/victory/VI_1411_41480.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1411_41481.webp b/assets/images/products/categories/task-chairs/victory/VI_1411_41481.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1411_41481.webp
rename to assets/images/products/categories/task-chairs/victory/VI_1411_41481.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1411_47941.webp b/assets/images/products/categories/task-chairs/victory/VI_1411_47941.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/VI_1411_47941.webp
rename to assets/images/products/categories/task-chairs/victory/VI_1411_47941.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/vi_1402_42741.webp b/assets/images/products/categories/task-chairs/victory/vi_1402_42741.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/vi_1402_42741.webp
rename to assets/images/products/categories/task-chairs/victory/vi_1402_42741.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/vi_1405_42712.webp b/assets/images/products/categories/task-chairs/victory/vi_1405_42712.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/vi_1405_42712.webp
rename to assets/images/products/categories/task-chairs/victory/vi_1405_42712.webp
diff --git a/admin-dashboard/assets/images/products/categories/task-chairs/victory/victory-vi-1405-03.webp b/assets/images/products/categories/task-chairs/victory/victory-vi-1405-03.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/task-chairs/victory/victory-vi-1405-03.webp
rename to assets/images/products/categories/task-chairs/victory/victory-vi-1405-03.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg b/assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg
rename to assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Blue-04.jpg b/assets/images/products/categories/training-chairs/arete/Arete-Blue-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Blue-04.jpg
rename to assets/images/products/categories/training-chairs/arete/Arete-Blue-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Green-02.jpg b/assets/images/products/categories/training-chairs/arete/Arete-Green-02.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Green-02.jpg
rename to assets/images/products/categories/training-chairs/arete/Arete-Green-02.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Green-04.jpg b/assets/images/products/categories/training-chairs/arete/Arete-Green-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Green-04.jpg
rename to assets/images/products/categories/training-chairs/arete/Arete-Green-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Grey-04.jpg b/assets/images/products/categories/training-chairs/arete/Arete-Grey-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Grey-04.jpg
rename to assets/images/products/categories/training-chairs/arete/Arete-Grey-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Grey-05.jpg b/assets/images/products/categories/training-chairs/arete/Arete-Grey-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/arete/Arete-Grey-05.jpg
rename to assets/images/products/categories/training-chairs/arete/Arete-Grey-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg b/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg
rename to assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-3.jpg b/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-3.jpg
rename to assets/images/products/categories/training-chairs/free-rein/FREE-REIN-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-4.jpg b/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-4.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-4.jpg
rename to assets/images/products/categories/training-chairs/free-rein/FREE-REIN-4.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-8.jpg b/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-8.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/free-rein/FREE-REIN-8.jpg
rename to assets/images/products/categories/training-chairs/free-rein/FREE-REIN-8.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_03_600x600px.jpg b/assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_03_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_03_600x600px.jpg
rename to assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_03_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_08_600x600px.jpg b/assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_08_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_08_600x600px.jpg
rename to assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_08_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp b/assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp
rename to assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp b/assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp
rename to assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-1.jpg b/assets/images/products/categories/training-chairs/icon/ICON-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-1.jpg
rename to assets/images/products/categories/training-chairs/icon/ICON-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-2.jpg b/assets/images/products/categories/training-chairs/icon/ICON-2.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-2.jpg
rename to assets/images/products/categories/training-chairs/icon/ICON-2.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-3.jpg b/assets/images/products/categories/training-chairs/icon/ICON-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-3.jpg
rename to assets/images/products/categories/training-chairs/icon/ICON-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-4.jpg b/assets/images/products/categories/training-chairs/icon/ICON-4.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-4.jpg
rename to assets/images/products/categories/training-chairs/icon/ICON-4.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-7.jpg b/assets/images/products/categories/training-chairs/icon/ICON-7.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/ICON-7.jpg
rename to assets/images/products/categories/training-chairs/icon/ICON-7.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/Icon-Setting-03.jpg b/assets/images/products/categories/training-chairs/icon/Icon-Setting-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/Icon-Setting-03.jpg
rename to assets/images/products/categories/training-chairs/icon/Icon-Setting-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_06_600x600px.jpg b/assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_06_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_06_600x600px.jpg
rename to assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_06_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_10_600x600px.jpg b/assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_10_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_10_600x600px.jpg
rename to assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_10_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg b/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg
rename to assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-3.jpg b/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-3.jpg
rename to assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-4.jpg b/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-4.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-4.jpg
rename to assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-4.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-5.jpg b/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-5.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-5.jpg
rename to assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-5.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-6.jpg b/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-6.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-6.jpg
rename to assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-6.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/Seating_LaKendo_Gallery_07_600x600px.jpg b/assets/images/products/categories/training-chairs/la-kendo/Seating_LaKendo_Gallery_07_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-kendo/Seating_LaKendo_Gallery_07_600x600px.jpg
rename to assets/images/products/categories/training-chairs/la-kendo/Seating_LaKendo_Gallery_07_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg b/assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg
rename to assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_04_600x600px.jpg b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_04_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_04_600x600px.jpg
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_04_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_05_600x600px.jpg b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_05_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_05_600x600px.jpg
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_05_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_08_600x600px.jpg b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_08_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_08_600x600px.jpg
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_08_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_09_600x600px.jpg b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_09_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_09_600x600px.jpg
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_09_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_12_600x600px.jpg b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_12_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_12_600x600px.jpg
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_12_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_17_600x600px.webp b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_17_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_17_600x600px.webp
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_17_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_18_600x600px.webp b/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_18_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_18_600x600px.webp
rename to assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_18_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_02_600x600px-1.webp b/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_02_600x600px-1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_02_600x600px-1.webp
rename to assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_02_600x600px-1.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp b/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp
rename to assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp b/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp
rename to assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg b/assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg
rename to assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/fold-up/Progress-Office-Entrakor-Training2-350x350.jpg b/assets/images/products/categories/training-tables/fold-up/Progress-Office-Entrakor-Training2-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/fold-up/Progress-Office-Entrakor-Training2-350x350.jpg
rename to assets/images/products/categories/training-tables/fold-up/Progress-Office-Entrakor-Training2-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg b/assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg
rename to assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/fold-up/training-foldup-300x300.jpg b/assets/images/products/categories/training-tables/fold-up/training-foldup-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/fold-up/training-foldup-300x300.jpg
rename to assets/images/products/categories/training-tables/fold-up/training-foldup-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg b/assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg
rename to assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg b/assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg
rename to assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom6-350x350.jpg b/assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom6-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom6-350x350.jpg
rename to assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom6-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/graft/entrawood-catalogue-72dpi-47-600x600 (1).jpg b/assets/images/products/categories/training-tables/graft/entrawood-catalogue-72dpi-47-600x600 (1).jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/graft/entrawood-catalogue-72dpi-47-600x600 (1).jpg
rename to assets/images/products/categories/training-tables/graft/entrawood-catalogue-72dpi-47-600x600 (1).jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg b/assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg
rename to assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/modesty-panels/entrawood-catalogue-72dpi-24-300x300.jpg b/assets/images/products/categories/training-tables/modesty-panels/entrawood-catalogue-72dpi-24-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/modesty-panels/entrawood-catalogue-72dpi-24-300x300.jpg
rename to assets/images/products/categories/training-tables/modesty-panels/entrawood-catalogue-72dpi-24-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg b/assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg
rename to assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_05_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_05_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_05_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_05_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_06_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_06_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_06_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_06_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_07_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_07_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_07_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_07_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_04_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_04_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_04_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_04_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_05_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_05_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_05_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_05_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_06_600x600px.jpg b/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_06_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_06_600x600px.jpg
rename to assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_06_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp b/assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp
rename to assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/cappa/CAPPA_BASE_SLED_WHITE.webp b/assets/images/products/categories/visitors-chair/cappa/CAPPA_BASE_SLED_WHITE.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/cappa/CAPPA_BASE_SLED_WHITE.webp
rename to assets/images/products/categories/visitors-chair/cappa/CAPPA_BASE_SLED_WHITE.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp b/assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp
rename to assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg b/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg
rename to assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-04.jpg b/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-04.jpg
rename to assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-01.jpg b/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-01.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-01.jpg
rename to assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-01.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-03.jpg b/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-03.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-03.jpg
rename to assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-03.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-04.jpg b/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-04.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-04.jpg
rename to assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-04.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-05.jpg b/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-05.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-05.jpg
rename to assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-05.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp b/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp
rename to assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-02.webp b/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-02.webp
rename to assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-02.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-03.webp b/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-03.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-03.webp
rename to assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-03.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-04.webp b/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-04.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-04.webp
rename to assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-04.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-05.webp b/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-05.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-05.webp
rename to assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-05.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp b/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp
rename to assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_GAS-PISTON_UPHOLSTERED_01.webp b/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_GAS-PISTON_UPHOLSTERED_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_GAS-PISTON_UPHOLSTERED_01.webp
rename to assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_GAS-PISTON_UPHOLSTERED_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH.webp b/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH.webp
rename to assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH_SEATPAD.webp b/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH_SEATPAD.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH_SEATPAD.webp
rename to assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH_SEATPAD.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_01.webp b/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_01.webp
rename to assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_02.webp b/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_02.webp
rename to assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg b/assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg
rename to assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_07_600x600px.jpg b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_07_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_07_600x600px.jpg
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_07_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_14_600x600px.webp b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_14_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_14_600x600px.webp
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_14_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_15_600x600px.webp b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_15_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_15_600x600px.webp
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_15_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_17_600x600px.jpg b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_17_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_17_600x600px.jpg
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_17_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_20_600x600px.jpg b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_20_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_20_600x600px.jpg
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_20_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_21_600x600px.webp b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_21_600x600px.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_21_600x600px.webp
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_21_600x600px.webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_26_600x600px.jpg b/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_26_600x600px.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_26_600x600px.jpg
rename to assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_26_600x600px.jpg
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (1).webp b/assets/images/products/categories/visitors-chair/plural/plural (1).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (1).webp
rename to assets/images/products/categories/visitors-chair/plural/plural (1).webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (10).webp b/assets/images/products/categories/visitors-chair/plural/plural (10).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (10).webp
rename to assets/images/products/categories/visitors-chair/plural/plural (10).webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (21).webp b/assets/images/products/categories/visitors-chair/plural/plural (21).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (21).webp
rename to assets/images/products/categories/visitors-chair/plural/plural (21).webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (7).webp b/assets/images/products/categories/visitors-chair/plural/plural (7).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (7).webp
rename to assets/images/products/categories/visitors-chair/plural/plural (7).webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (8).webp b/assets/images/products/categories/visitors-chair/plural/plural (8).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (8).webp
rename to assets/images/products/categories/visitors-chair/plural/plural (8).webp
diff --git a/admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (9).webp b/assets/images/products/categories/visitors-chair/plural/plural (9).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/visitors-chair/plural/plural (9).webp
rename to assets/images/products/categories/visitors-chair/plural/plural (9).webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg b/assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg
rename to assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg b/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg
rename to assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722.jpg b/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722.jpg
rename to assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1800X1510X722-300x300.jpg b/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1800X1510X722-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1800X1510X722-300x300.jpg
rename to assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1800X1510X722-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg b/assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg
rename to assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Evo-dual-desk001.jpg b/assets/images/products/categories/work-station/evolution/Evo-dual-desk001.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Evo-dual-desk001.jpg
rename to assets/images/products/categories/work-station/evolution/Evo-dual-desk001.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Evolution-single-desk-WTWT-300x300.jpg b/assets/images/products/categories/work-station/evolution/Evolution-single-desk-WTWT-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Evolution-single-desk-WTWT-300x300.jpg
rename to assets/images/products/categories/work-station/evolution/Evolution-single-desk-WTWT-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg b/assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg
rename to assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg b/assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg
rename to assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Exec-FG-Top-with-Aluminium-Grey-Steel-350x350.jpg b/assets/images/products/categories/work-station/evolution/Exec-FG-Top-with-Aluminium-Grey-Steel-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Exec-FG-Top-with-Aluminium-Grey-Steel-350x350.jpg
rename to assets/images/products/categories/work-station/evolution/Exec-FG-Top-with-Aluminium-Grey-Steel-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Pedenza-Folkstone-Grey-Top-with-White-Steel-300x300.jpg b/assets/images/products/categories/work-station/evolution/Pedenza-Folkstone-Grey-Top-with-White-Steel-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Pedenza-Folkstone-Grey-Top-with-White-Steel-300x300.jpg
rename to assets/images/products/categories/work-station/evolution/Pedenza-Folkstone-Grey-Top-with-White-Steel-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/Sentinel_Furniture_Johannesburg-17-350x350.jpg b/assets/images/products/categories/work-station/evolution/Sentinel_Furniture_Johannesburg-17-350x350.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/Sentinel_Furniture_Johannesburg-17-350x350.jpg
rename to assets/images/products/categories/work-station/evolution/Sentinel_Furniture_Johannesburg-17-350x350.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg b/assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg
rename to assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/f25/F25_DESK_01.webp b/assets/images/products/categories/work-station/f25/F25_DESK_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/f25/F25_DESK_01.webp
rename to assets/images/products/categories/work-station/f25/F25_DESK_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp b/assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp
rename to assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/f25/F25_DESK_BENCH_02.webp b/assets/images/products/categories/work-station/f25/F25_DESK_BENCH_02.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/f25/F25_DESK_BENCH_02.webp
rename to assets/images/products/categories/work-station/f25/F25_DESK_BENCH_02.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/v30/v30 (12).webp b/assets/images/products/categories/work-station/v30/v30 (12).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/v30/v30 (12).webp
rename to assets/images/products/categories/work-station/v30/v30 (12).webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/v30/v30 (14).webp b/assets/images/products/categories/work-station/v30/v30 (14).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/v30/v30 (14).webp
rename to assets/images/products/categories/work-station/v30/v30 (14).webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/v30/v30 (16).webp b/assets/images/products/categories/work-station/v30/v30 (16).webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/v30/v30 (16).webp
rename to assets/images/products/categories/work-station/v30/v30 (16).webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/v30/v30.webp b/assets/images/products/categories/work-station/v30/v30.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/v30/v30.webp
rename to assets/images/products/categories/work-station/v30/v30.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp b/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp
rename to assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_03.webp b/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_03.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_03.webp
rename to assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_03.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_04.webp b/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_04.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_04.webp
rename to assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_04.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/xpress-lite/XPRESS-LITE-1.jpg b/assets/images/products/categories/work-station/xpress-lite/XPRESS-LITE-1.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/xpress-lite/XPRESS-LITE-1.jpg
rename to assets/images/products/categories/work-station/xpress-lite/XPRESS-LITE-1.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/xpress-lite/xpress-lite-3.jpg b/assets/images/products/categories/work-station/xpress-lite/xpress-lite-3.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/xpress-lite/xpress-lite-3.jpg
rename to assets/images/products/categories/work-station/xpress-lite/xpress-lite-3.jpg
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/10_660x300.webp b/assets/images/products/categories/work-station/zama/10_660x300.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/10_660x300.webp
rename to assets/images/products/categories/work-station/zama/10_660x300.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/11_660x300.webp b/assets/images/products/categories/work-station/zama/11_660x300.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/11_660x300.webp
rename to assets/images/products/categories/work-station/zama/11_660x300.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/13.webp b/assets/images/products/categories/work-station/zama/13.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/13.webp
rename to assets/images/products/categories/work-station/zama/13.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/3_660x300.webp b/assets/images/products/categories/work-station/zama/3_660x300.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/3_660x300.webp
rename to assets/images/products/categories/work-station/zama/3_660x300.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/6_660x300.webp b/assets/images/products/categories/work-station/zama/6_660x300.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/6_660x300.webp
rename to assets/images/products/categories/work-station/zama/6_660x300.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/7_660x300.webp b/assets/images/products/categories/work-station/zama/7_660x300.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/7_660x300.webp
rename to assets/images/products/categories/work-station/zama/7_660x300.webp
diff --git a/admin-dashboard/assets/images/products/categories/work-station/zama/9_660x300.webp b/assets/images/products/categories/work-station/zama/9_660x300.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/categories/work-station/zama/9_660x300.webp
rename to assets/images/products/categories/work-station/zama/9_660x300.webp
diff --git a/admin-dashboard/assets/images/products/covers/barstools.png b/assets/images/products/covers/barstools.png
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/barstools.png
rename to assets/images/products/covers/barstools.png
diff --git a/admin-dashboard/assets/images/products/covers/canteen_chairs.webp b/assets/images/products/covers/canteen_chairs.webp
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/canteen_chairs.webp
rename to assets/images/products/covers/canteen_chairs.webp
diff --git a/admin-dashboard/assets/images/products/covers/conference_chairs.jpg b/assets/images/products/covers/conference_chairs.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/conference_chairs.jpg
rename to assets/images/products/covers/conference_chairs.jpg
diff --git a/admin-dashboard/assets/images/products/covers/executive_desks.jpg b/assets/images/products/covers/executive_desks.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/executive_desks.jpg
rename to assets/images/products/covers/executive_desks.jpg
diff --git a/admin-dashboard/assets/images/products/covers/executive_task_chair.png b/assets/images/products/covers/executive_task_chair.png
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/executive_task_chair.png
rename to assets/images/products/covers/executive_task_chair.png
diff --git a/admin-dashboard/assets/images/products/covers/meeting_tables.jpg b/assets/images/products/covers/meeting_tables.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/meeting_tables.jpg
rename to assets/images/products/covers/meeting_tables.jpg
diff --git a/admin-dashboard/assets/images/products/covers/occassional_tables.jpg b/assets/images/products/covers/occassional_tables.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/occassional_tables.jpg
rename to assets/images/products/covers/occassional_tables.jpg
diff --git a/admin-dashboard/assets/images/products/covers/screens.jpg b/assets/images/products/covers/screens.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/screens.jpg
rename to assets/images/products/covers/screens.jpg
diff --git a/admin-dashboard/assets/images/products/covers/soft_seating.jpg b/assets/images/products/covers/soft_seating.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/soft_seating.jpg
rename to assets/images/products/covers/soft_seating.jpg
diff --git a/admin-dashboard/assets/images/products/covers/storage.jpg b/assets/images/products/covers/storage.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/storage.jpg
rename to assets/images/products/covers/storage.jpg
diff --git a/admin-dashboard/assets/images/products/covers/task_chairs.jpg b/assets/images/products/covers/task_chairs.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/task_chairs.jpg
rename to assets/images/products/covers/task_chairs.jpg
diff --git a/admin-dashboard/assets/images/products/covers/training_chairs.jpg b/assets/images/products/covers/training_chairs.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/training_chairs.jpg
rename to assets/images/products/covers/training_chairs.jpg
diff --git a/admin-dashboard/assets/images/products/covers/training_tables.jpg b/assets/images/products/covers/training_tables.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/training_tables.jpg
rename to assets/images/products/covers/training_tables.jpg
diff --git a/admin-dashboard/assets/images/products/covers/visitors_chair.jpg b/assets/images/products/covers/visitors_chair.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/visitors_chair.jpg
rename to assets/images/products/covers/visitors_chair.jpg
diff --git a/admin-dashboard/assets/images/products/covers/work_station.jpg b/assets/images/products/covers/work_station.jpg
similarity index 100%
rename from admin-dashboard/assets/images/products/covers/work_station.jpg
rename to assets/images/products/covers/work_station.jpg
diff --git a/assets/images/stanbic.png b/assets/images/stanbic.png
deleted file mode 100644
index b8e91c8..0000000
Binary files a/assets/images/stanbic.png and /dev/null differ
diff --git a/assets/images/storage.jpg b/assets/images/storage.jpg
deleted file mode 100644
index aae36cd..0000000
Binary files a/assets/images/storage.jpg and /dev/null differ
diff --git a/assets/images/workstation.jpg b/assets/images/workstation.jpg
deleted file mode 100644
index ee05008..0000000
Binary files a/assets/images/workstation.jpg and /dev/null differ
diff --git a/admin-dashboard/assets/styles/main.css b/assets/styles/main.css
similarity index 100%
rename from admin-dashboard/assets/styles/main.css
rename to assets/styles/main.css
diff --git a/data/blog.json b/data/blog.json
deleted file mode 100644
index 1c8d54a..0000000
--- a/data/blog.json
+++ /dev/null
@@ -1,104 +0,0 @@
-{
- "posts": [
- {
- "id": 1,
- "title": "Going all-in with millennial design",
- "excerpt": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Mus mauris vitae ultricies leo integer malesuada nunc. In nulla posuere sollicitudin aliquam ultrices. Morbi blandit cursus risus at ultrices mi tempus imperdiet. Libero enim sed faucibus turpis in. Cursus mattis molestie a iaculis at erat. Nibh cras pulvinar mattis nunc sed blandit libero. Pellentesque elit ullamcorper dignissim cras tincidunt. Pharetra et ultrices neque ornare aenean euismod elementum. The millennial generation has redefined what it means to create a home that reflects both personal style and contemporary values. This design philosophy embraces clean lines, sustainable materials, and multifunctional spaces that adapt to the ever-changing needs of modern life. From open-concept layouts that foster social interaction to smart home technology that enhances daily convenience, millennial design prioritizes both aesthetics and functionality.",
- "content": [
- "Quis hendrerit dolor magna eget est lorem ipsum. Bibendum arcu vitae elementum curabitur vitae nunc sed velit dignissim sodales. Non tellus orci ac auctor augue mauris augue neque gravida in. Nisl condimentum id venenatis a condimentum vitae sapien pellentesque habitant. Sit amet volutpat consequat mauris nunc congue nisi vitae suscipit. Integer enim neque volutpat ac tincidunt vitae semper quis lectus. Nibh tellus molestie nunc non blandit massa enim nec. Amet consectetur adipiscing elit ut aliquam purus sit amet luctus.",
- "At tellus at urna condimentum mattis pellentesque id nibh tortor id. Non quam lacus suspendisse faucibus interdum. Interdum velit euismod in pellentesque massa placerat duis ultricies. Platea dictumst quisque sagittis purus sit amet volutpat consequat. Sem viverra aliquet eget sit amet tellus cras adipiscing. Eget lorem dolor sed viverra ipsum nunc aliquet bibendum enim facilisis gravida neque convallis a cras.",
- "Mattis rhoncus urna neque viverra justo nec. Aliquet porttitor lacus luctus accumsan tortor posuere ac ut consequat semper viverra nam libero justo laoreet sit amet cursus sit amet dictum sit amet justo. Risus at ultrices mi tempus imperdiet nulla malesuada pellentesque elit.",
- "The millennial generation has redefined what it means to create a home that reflects both personal style and contemporary values. This design philosophy embraces clean lines, sustainable materials, and multifunctional spaces that adapt to the ever-changing needs of modern life. From open-concept layouts that foster social interaction to smart home technology that enhances daily convenience, millennial design prioritizes both aesthetics and functionality.",
- "One of the most significant aspects of millennial design is its emphasis on sustainability and ethical consumption. Young homeowners are increasingly choosing furniture and decor that not only looks good but also aligns with their environmental values. This includes pieces made from responsibly sourced materials, vintage and upcycled items that reduce waste, and locally crafted goods that support small businesses and reduce carbon footprints.",
- "The color palette of millennial design often features neutral tones as a foundation, with strategic pops of color that reflect personal taste and current trends. Soft grays, warm whites, and natural wood tones create a calming backdrop, while accent colors like sage green, dusty rose, and deep navy add personality without overwhelming the space. This approach allows for easy updates and seasonal changes without requiring major renovations.",
- "Technology integration is another hallmark of millennial design, with smart home features seamlessly incorporated into the aesthetic. From hidden charging stations to voice-controlled lighting systems, technology enhances the living experience without compromising the visual appeal of the space. This balance between high-tech functionality and timeless design creates homes that are both modern and enduring."
- ],
- "author": "Admin",
- "date": "2022-10-14",
- "tags": ["design"],
- "image": "assets/images/blog_post_1.png",
- "thumbnail": "assets/images/blog_thumb_1.png",
- "alt": "Going all-in with millennial design"
- },
- {
- "id": 2,
- "title": "How to create the perfect living room",
- "excerpt": "Designing the perfect living room requires careful consideration of space, functionality, and personal style. From choosing the right furniture pieces to creating a cohesive color scheme, every element plays a crucial role in crafting a space that feels both welcoming and reflective of your lifestyle. Let's explore the key principles that make a living room truly exceptional. The foundation of any great living room begins with understanding the space you're working with. Consider the room's dimensions, natural light sources, and traffic flow. These factors will guide your furniture placement and help you create a layout that maximizes both comfort and functionality. When selecting furniture, prioritize pieces that serve multiple purposes and create a harmonious balance between form and function.",
- "content": [
- "The foundation of any great living room begins with understanding the space you're working with. Consider the room's dimensions, natural light sources, and traffic flow. These factors will guide your furniture placement and help you create a layout that maximizes both comfort and functionality.",
- "When selecting furniture, prioritize pieces that serve multiple purposes. A comfortable sofa that can accommodate family gatherings, an accent chair that adds personality, and a coffee table that provides both surface area and storage can transform your living room into a versatile space that adapts to your daily needs.",
- "Color and texture play vital roles in creating atmosphere. Choose a color palette that reflects your personal style while maintaining harmony throughout the space. Layer different textures through rugs, throw pillows, and decorative elements to add depth and visual interest."
- ],
- "author": "Admin",
- "date": "2022-11-05",
- "tags": ["design"],
- "image": "assets/images/conference_room.jpg",
- "thumbnail": "assets/images/conference_room.jpg",
- "alt": "Perfect living room design"
- },
- {
- "id": 3,
- "title": "Sustainable furniture choices for modern homes",
- "excerpt": "As environmental consciousness grows, more homeowners are seeking sustainable furniture options that align with their values. From responsibly sourced materials to eco-friendly manufacturing processes, sustainable furniture offers both environmental benefits and long-term value. Discover how to make informed choices that benefit both your home and the planet. Sustainable furniture begins with the materials used in its construction. Look for pieces made from responsibly harvested wood, such as FSC-certified timber, or consider alternatives like bamboo, which grows rapidly and requires minimal resources. These materials not only reduce environmental impact but also often provide superior durability and timeless appeal.",
- "content": [
- "Sustainable furniture begins with the materials used in its construction. Look for pieces made from responsibly harvested wood, such as FSC-certified timber, or consider alternatives like bamboo, which grows rapidly and requires minimal resources. These materials not only reduce environmental impact but also often provide superior durability.",
- "Manufacturing processes also play a crucial role in sustainability. Choose furniture from companies that prioritize energy-efficient production methods, minimize waste, and use non-toxic finishes. Many sustainable furniture makers also offer repair services and replacement parts, extending the lifespan of your investment.",
- "Consider the full lifecycle of your furniture choices. Opt for timeless designs that won't quickly go out of style, and invest in quality pieces that can be passed down through generations. This approach reduces the need for frequent replacements and creates a more sustainable consumption pattern."
- ],
- "author": "Admin",
- "date": "2022-12-20",
- "tags": ["sustainability"],
- "image": "assets/images/kitchen.JPG",
- "thumbnail": "assets/images/kitchen.JPG",
- "alt": "Sustainable furniture choices"
- },
- {
- "id": 4,
- "title": "The art of mixing vintage and contemporary pieces",
- "excerpt": "Creating a home that feels both timeless and current requires mastering the art of mixing vintage and contemporary furniture. This approach allows you to tell a story through your decor while maintaining a cohesive and functional space. Learn how to balance different eras and styles to create a home that's uniquely yours. The key to successfully mixing vintage and contemporary pieces lies in finding common threads that unite them. Look for shared design elements such as similar lines, complementary colors, or matching materials. A vintage wooden table might pair beautifully with modern chairs if they share similar wood tones or geometric shapes.",
- "content": [
- "The key to successfully mixing vintage and contemporary pieces lies in finding common threads that unite them. Look for shared design elements such as similar lines, complementary colors, or matching materials. A vintage wooden table might pair beautifully with modern chairs if they share similar wood tones or geometric shapes.",
- "Scale and proportion are crucial when combining different eras. Ensure that vintage and contemporary pieces work together in terms of size and visual weight. A large vintage armoire might overwhelm a room filled with delicate modern furniture, while smaller vintage accents can add character without dominating the space.",
- "Don't be afraid to experiment with unexpected combinations. Sometimes the most interesting interiors come from pairing pieces that seem to have nothing in common. The contrast between a sleek modern sofa and a rustic vintage coffee table can create a dynamic and engaging space that reflects your personal style."
- ],
- "author": "Admin",
- "date": "2023-01-15",
- "tags": ["vintage"],
- "image": "assets/images/lounge_chair.jpg",
- "thumbnail": "assets/images/lounge_chair.jpg",
- "alt": "Mixing vintage and contemporary furniture"
- },
- {
- "id": 5,
- "title": "Maximizing small spaces with smart furniture solutions",
- "excerpt": "Living in a smaller space doesn't mean sacrificing style or functionality. With the right furniture choices and design strategies, you can create a home that feels spacious, organized, and beautiful. Discover innovative solutions that make the most of every square foot while maintaining your personal aesthetic. Multi-functional furniture is essential in small spaces. Look for pieces that serve multiple purposes, such as ottomans with hidden storage, sofa beds for guest accommodation, or dining tables that can expand when needed. These versatile pieces help you maximize functionality without cluttering your space.",
- "content": [
- "Multi-functional furniture is essential in small spaces. Look for pieces that serve multiple purposes, such as ottomans with hidden storage, sofa beds for guest accommodation, or dining tables that can expand when needed. These versatile pieces help you maximize functionality without cluttering your space.",
- "Vertical storage solutions can dramatically increase your usable space. Wall-mounted shelves, tall bookcases, and hanging organizers keep your belongings organized while freeing up valuable floor space. Consider custom storage solutions that fit perfectly into awkward corners or underutilized areas.",
- "The right color palette and lighting can make a small space feel much larger. Light, neutral colors reflect natural light and create an airy atmosphere, while strategic lighting can highlight focal points and create depth. Mirrors are also excellent tools for making small spaces feel more expansive."
- ],
- "author": "Admin",
- "date": "2023-02-28",
- "tags": ["design"],
- "image": "assets/images/storage.jpg",
- "thumbnail": "assets/images/storage.jpg",
- "alt": "Small space furniture solutions"
- },
- {
- "id": 6,
- "title": "Color psychology in home design",
- "excerpt": "Colors have a profound impact on our emotions, mood, and overall well-being. Understanding color psychology can help you create spaces that not only look beautiful but also support your desired atmosphere and lifestyle. Explore how different colors can transform your home and enhance your daily experience. Warm colors like red, orange, and yellow create energy and excitement, making them perfect for social spaces like dining rooms and living areas. These colors stimulate conversation and appetite, making them ideal for areas where you entertain guests or share meals with family.",
- "content": [
- "Warm colors like red, orange, and yellow create energy and excitement, making them perfect for social spaces like dining rooms and living areas. These colors stimulate conversation and appetite, making them ideal for areas where you entertain guests or share meals with family.",
- "Cool colors such as blue, green, and purple promote calmness and relaxation. These hues are excellent choices for bedrooms, bathrooms, and home offices where you want to create a peaceful, focused environment. Different shades can evoke different moods - deep navy creates sophistication while soft lavender promotes tranquility.",
- "Neutral colors provide a versatile foundation that allows you to experiment with accent colors and seasonal changes. Whites, grays, and beiges create a timeless backdrop that can be easily updated with colorful accessories, artwork, or seasonal decor without requiring major furniture changes."
- ],
- "author": "Admin",
- "date": "2023-03-12",
- "tags": ["vintage"],
- "image": "assets/images/chairs.jpg",
- "thumbnail": "assets/images/chairs.jpg",
- "alt": "Color psychology in home design"
- }
- ]
-}
diff --git a/data/products.json b/data/products.json
index 3d42c80..5da43a9 100644
--- a/data/products.json
+++ b/data/products.json
@@ -2,1815 +2,3029 @@
"products": [
{
"id": 1,
- "name": "Asgaard sofa",
- "description": "Premium executive sofa with ergonomic design and premium fabric upholstery. Perfect for executive offices and reception areas.",
- "image": "assets/images/asgaard_sofa.png",
- "alt": "Asgaard sofa",
- "category": "seating",
- "modelNo": "SE001",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "price": 250,
- "originalPrice": 250,
- "rating": "4.4",
- "reviews": 88,
- "inStock": true,
+ "name": "Modesty Panels",
+ "description": "Practical design ideal for classrooms, training centres, and lecture rooms. Built‑in modesty panel for a clean, professional look. Available in various sizes to suit different layouts; comfortable for group learning and workshops.",
+ "image": "assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg",
+ "alt": "Modesty Panels",
+ "category": "training-tables",
"images": [
- "assets/images/asgaard_sofa.png",
- "assets/images/asgaard_sofa.png",
- "assets/images/asgaard_sofa.png",
- "assets/images/asgaard_sofa.png"
+ "assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg",
+ "assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg",
+ "assets/images/products/categories/training-tables/modesty-panels/entrawood-catalogue-72dpi-24-300x300.jpg"
],
"descriptionLong": [
- "The Asgaard sofa represents the pinnacle of executive seating design, combining sophisticated aesthetics with uncompromising comfort. Crafted with precision engineering and premium materials, this sofa sets the standard for professional workspace furniture.",
- "Featuring a robust engineered wood frame and high-performance fabric upholstery, the Asgaard sofa is built to withstand the demands of daily office use while maintaining its elegant appearance. The ergonomic design provides optimal support for extended meetings and collaborative sessions, while the generous proportions accommodate multiple users comfortably."
+ "Practical training table with integrated modesty panel. Ideal for classrooms, training centres, and lecture rooms. Offered in multiple sizes to suit room layouts.",
+ "Comfortable for group learning, workshops, and student use."
],
"additionalInformation": {
- "Material": "Engineered wood frame, premium fabric upholstery",
- "Upholstery": "Performance fabric with stain resistance",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Engineered wood and steel",
+ "Feature": "Built‑in modesty panel",
+ "Sizes": "Various sizes available",
+ "Use Cases": "Classrooms, training, lecture rooms",
+ "Warranty": "5 years"
},
- "reviewsCount": 88,
"galleryPairs": [
- {
- "left": "assets/images/asgaard_sofa.png",
- "right": "assets/images/asgaard_sofa.png"
- }
- ],
- "dimensions": "180cm x 85cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/training-tables/modesty-panels/training-desk-4-1000x1000.jpg",
+ "assets/images/products/categories/training-tables/modesty-panels/Student-set-up-300x300.jpg"
+ ]
},
{
"id": 2,
- "name": "Lolito",
- "description": "Modern conference table with sleek design and durable construction. Ideal for collaborative meetings and presentations.",
- "image": "assets/images/office_chair.jpg",
- "alt": "Lolito",
- "category": "tables",
- "modelNo": "TA002",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "price": 899.99,
- "originalPrice": 899.99,
- "rating": "4.9",
- "reviews": 69,
- "inStock": true,
+ "name": "Domino",
+ "description": "Flexible training table designed for multi‑functional spaces. Folding and nesting for compact storage. Built‑in linking device and lockable castors for smooth, secure movement.",
+ "image": "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp",
+ "alt": "Domino",
+ "category": "training-tables",
"images": [
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg"
+ "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp",
+ "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp",
+ "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_02_600x600px-1.webp"
],
"descriptionLong": [
- "The Lolito conference table embodies modern workplace design with its clean lines and sophisticated aesthetic. This versatile table is engineered to facilitate productive meetings and collaborative sessions in any professional environment.",
- "Constructed from premium materials with a focus on durability and functionality, the Lolito table features integrated cable management and optional power solutions. The spacious surface accommodates multiple users while maintaining an organized, professional appearance that enhances any meeting room or conference space."
+ "Flexible training table for multi‑functional spaces. Folding and nesting design for compact storage. Easy to rearrange and connect via built‑in linking device.",
+ "Lockable castors for smooth movement and secure placement."
],
"additionalInformation": {
"Material": "Solid wood top, steel frame",
- "Finish": "Natural wood or dark stain options",
- "Dimensions": "See size options",
- "Warranty": "5 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Design": "Folding & nesting; built‑in linking; lockable castors",
+ "Use Cases": "Multi‑functional training and collaboration",
+ "Warranty": "5 years"
},
- "reviewsCount": 69,
"galleryPairs": [
- {
- "left": "assets/images/office_chair.jpg",
- "right": "assets/images/office_chair.jpg"
- }
- ],
- "dimensions": "120cm x 60cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_04_600x600px-1.webp",
+ "assets/images/products/categories/training-tables/domino/Thumbnail_Desks-Tables_Training_Tables_Domino-Nesting_Table_Categories_Gallery_03_600x600px-1.webp"
+ ]
},
{
"id": 3,
- "name": "Respira",
- "description": "Contemporary outdoor workspace solution with weather-resistant materials. Perfect for outdoor meetings and collaborative areas.",
- "image": "assets/images/conference_room.jpg",
- "alt": "Respira",
- "category": "storage",
- "modelNo": "ST003",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "price": 599.99,
- "originalPrice": 599.99,
- "rating": "4.8",
- "reviews": 12,
- "inStock": true,
+ "name": "Slim",
+ "description": "Easy flip‑top design for quick setup and storage. Flexible solution for training rooms, conferences, and workshops. Strong, durable frame for long‑lasting use.",
+ "image": "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg",
+ "alt": "Slim",
+ "category": "training-tables",
"images": [
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg"
+ "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_02_600x600px.jpg",
+ "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_05_600x600px.jpg",
+ "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_06_600x600px.jpg",
+ "assets/images/products/categories/training-tables/slim/Thumbnail_Desks-Tables_Training_Tables_Slim-Nesting_Table_Categories_Gallery_07_600x600px.jpg"
],
"descriptionLong": [
- "Transform any outdoor space into a productive work environment with our Outdoor Bar Table Set. Designed specifically for modern workplaces that embrace outdoor collaboration, this set combines functionality with weather-resistant durability.",
- "The set features a sturdy aluminum frame with powder-coated finish and tempered glass top, ensuring years of reliable use in various weather conditions. The ergonomic bar stools provide comfortable seating for extended outdoor work sessions, making it perfect for companies that value flexible workspace solutions."
+ "Slim’s flip‑top makes setup fast and storage effortless, perfect for training rooms, conferences, and workshops.",
+ "A strong, durable frame ensures reliable, long‑lasting performance day after day."
],
"additionalInformation": {
- "Material": "Aluminum frame, tempered glass top",
- "Weather Resistance": "UV and moisture resistant",
- "Dimensions": "See size options",
- "Warranty": "2 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Steel/aluminum frame; durable top",
+ "Design": "Flip‑top for easy nesting and storage",
+ "Use Cases": "Training rooms, conferences, workshops",
+ "Warranty": "5 years"
},
- "reviewsCount": 12,
"galleryPairs": [
- {
- "left": "assets/images/conference_room.jpg",
- "right": "assets/images/conference_room.jpg"
- }
- ],
- "dimensions": "100cm x 50cm x 90cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_04_600x600px.jpg",
+ "assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_05_600x600px.jpg",
+ "assets/images/products/categories/training-tables/slim/Training-Tables_Slim_Gallery_06_600x600px.jpg"
+ ]
},
{
"id": 4,
- "name": "Respira",
- "description": "Versatile storage solution with multiple compartments and secure locking system. Essential for organized office environments.",
- "image": "assets/images/conference_rooms.jpg",
- "alt": "Respira",
- "category": "storage",
- "price": 599.99,
- "inStock": true,
- "modelNo": "ST004",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "originalPrice": 599.99,
- "rating": "4.8",
- "reviews": 103,
+ "name": "Fold Up",
+ "description": "Practical fold‑up table for easy setup and storage. Lightweight yet strong for simple movement. Ideal for training rooms, classrooms, and multipurpose spaces.",
+ "image": "assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg",
+ "alt": "Fold Up",
+ "category": "training-tables",
"images": [
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg"
+ "assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg",
+ "assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg",
+ "assets/images/products/categories/training-tables/fold-up/training-foldup-300x300.jpg",
+ "assets/images/products/categories/training-tables/fold-up/Progress-Office-Entrakor-Training2-350x350.jpg"
],
"descriptionLong": [
- "Maximize your workspace efficiency with our comprehensive storage cabinet system. Designed to meet the diverse storage needs of modern offices, this cabinet provides secure, organized storage for documents, supplies, and personal items.",
- "The cabinet features adjustable shelves, integrated cable management, and optional locking mechanisms for enhanced security. The modular design allows for easy customization to fit specific storage requirements, while the premium finish ensures it complements any office aesthetic."
+ "Practical fold‑up design for rapid setup and compact storage. Lightweight yet strong; easy to move and reconfigure.",
+ "Ideal for training rooms, classrooms, and multipurpose spaces."
],
"additionalInformation": {
"Material": "Engineered wood, steel hardware",
- "Security": "Optional locking system",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Design": "Fold‑up; lightweight yet strong",
+ "Use Cases": "Training rooms, classrooms, multipurpose",
+ "Warranty": "5 years"
},
- "reviewsCount": 103,
"galleryPairs": [
- {
- "left": "assets/images/conference_rooms.jpg",
- "right": "assets/images/conference_rooms.jpg"
- }
- ],
- "dimensions": "60cm x 40cm x 120cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/training-tables/fold-up/Fold-up-Table-300x300.jpg",
+ "assets/images/products/categories/training-tables/fold-up/entrakor_fold-up-table-300x300.jpg"
+ ]
},
{
"id": 5,
- "name": "Lounge Chairs",
- "description": "Contemporary lounge chair with ergonomic design and premium comfort. Perfect for breakout areas and relaxation spaces.",
- "image": "assets/images/lounge_chair.jpg",
- "alt": "Lounge Chairs",
- "category": "seating",
- "price": 299.99,
- "inStock": true,
- "modelNo": "SE005",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 299.99,
- "rating": "4.4",
- "reviews": 25,
+ "name": "Graft",
+ "description": "Arrange in a semi‑circle for group learning or spaced layouts. Available as stackable or non‑stackable to suit your needs. Perfect for schools, training centres, and collaborative environments.",
+ "image": "assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg",
+ "alt": "Graft",
+ "category": "training-tables",
"images": [
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg"
+ "assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg",
+ "assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg",
+ "assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom6-350x350.jpg",
+ "assets/images/products/categories/training-tables/graft/entrawood-catalogue-72dpi-47-600x600 (1).jpg"
],
"descriptionLong": [
- "Create inviting breakout spaces with our premium lounge chair collection. Designed for comfort and style, these chairs provide the perfect seating solution for informal meetings, relaxation areas, and collaborative spaces.",
- "Each chair features an ergonomic design that promotes proper posture while offering exceptional comfort for extended use. The high-quality upholstery and durable construction ensure long-lasting performance in high-traffic office environments."
+ "Configurable for semi‑circle group learning or spaced layouts. Choose stackable or non‑stackable options to suit storage needs.",
+ "Ideal for schools, training centres, and collaborative spaces."
],
"additionalInformation": {
- "Material": "Steel frame, premium fabric upholstery",
- "Comfort": "Ergonomic design with lumbar support",
- "Dimensions": "See size options",
- "Warranty": "2 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Steel frame, durable top",
+ "Configuration": "Semi‑circle layouts; stackable or non‑stackable",
+ "Use Cases": "Schools, training centres, collaborative environments",
+ "Warranty": "5 years"
},
- "reviewsCount": 25,
"galleryPairs": [
- {
- "left": "assets/images/lounge_chair.jpg",
- "right": "assets/images/lounge_chair.jpg"
- }
- ],
- "dimensions": "140cm x 80cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/training-tables/graft/Graft-Table-22mm-Trapezoid-Table-Free-Standing-870x600x745-Non-stack-600x600.jpg",
+ "assets/images/products/categories/training-tables/graft/GraftTable-stackable-classroom2-350x350.jpg"
+ ]
},
{
"id": 6,
- "name": "Leviosa",
- "description": "Ergonomic office chair with adjustable features and breathable mesh back. Designed for all-day comfort and productivity.",
- "image": "assets/images/office_chair.jpg",
- "alt": "Leviosa",
- "category": "seating",
- "price": 349.99,
- "inStock": true,
- "modelNo": "SE006",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 349.99,
- "rating": "4.5",
- "reviews": 80,
+ "name": "Cocoon",
+ "description": "Rounded corner design for a clean, modern look. Helps define personal workspace while keeping an open‑plan feel.",
+ "image": "assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg",
+ "alt": "Cocoon",
+ "category": "screens",
"images": [
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg"
+ "assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg",
+ "assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg",
+ "assets/images/products/categories/screens/cocoon/MosheCapital-Nov2019-LR-4323-350x350.jpg"
],
"descriptionLong": [
- "Enhance workplace productivity with our ergonomic office chair designed for extended use. This chair combines advanced ergonomic features with contemporary design to provide optimal support and comfort throughout the workday.",
- "The chair features adjustable height, lumbar support, and breathable mesh back for temperature regulation. The premium materials and construction ensure durability while the ergonomic design helps prevent fatigue and promotes proper posture."
+ "Cocoon brings gentle curves and a refined presence to open offices, creating a sense of personal territory without shutting users off from their surroundings. Its rounded corners and soft geometry help calm busy floors, while the carefully considered height and width add visual order to shared environments.",
+ "By subtly defining the boundary of a workstation, Cocoon supports focused work and quick conversations alike. It pairs easily with modern desking and seating systems to elevate the overall look and feel of a space, offering privacy, comfort, and cohesion in one minimalist form."
],
"additionalInformation": {
- "Material": "Aluminum base, mesh back, fabric seat",
- "Adjustments": "Height, tilt, lumbar support",
- "Dimensions": "See size options",
- "Warranty": "5 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum frame",
+ "Adjustments": "Height adjustable, flexible positioning",
+ "Warranty": "5 years"
},
- "reviewsCount": 80,
"galleryPairs": [
- {
- "left": "assets/images/office_chair.jpg",
- "right": "assets/images/office_chair.jpg"
- }
- ],
- "dimensions": "100cm x 70cm x 85cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/screens/cocoon/edit72-008-350x350.jpg",
+ "assets/images/products/categories/screens/cocoon/entrawood-catalogue-sml-10-350x350.jpg"
+ ]
},
{
"id": 7,
- "name": "Lolito",
- "description": "Acoustic meeting pod with sound-absorbing materials and integrated technology. Perfect for private conversations and focused work.",
- "image": "assets/images/conference_room.jpg",
- "alt": "Lolito",
- "category": "tables",
- "price": 899.99,
- "inStock": true,
- "modelNo": "TA007",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "originalPrice": 899.99,
- "rating": "4.3",
- "reviews": 10,
+ "name": "Global Mute Cocoon",
+ "description": "Lightweight frameless screens for modern offices. Easy to position with no brackets required. Creates privacy and reduces distractions in open‑plan areas.",
+ "image": "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg",
+ "alt": "Global Mute Cocoon",
+ "category": "screens",
"images": [
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg"
+ "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg",
+ "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg"
],
"descriptionLong": [
- "Create private, distraction-free environments with our acoustic meeting pods. These innovative workspace solutions provide the perfect setting for confidential conversations, focused work sessions, and small team meetings.",
- "Each pod features advanced acoustic engineering with sound-absorbing materials that create a quiet, private environment. The integrated ventilation system and comfortable seating ensure extended use comfort, while the modular design allows for easy installation in any office space."
+ "Lightweight, frameless screen for modern offices. Positions easily without brackets.",
+ "Adds privacy and reduces distractions in open‑plan areas. It is backed by a 5-year warranty."
],
"additionalInformation": {
- "Material": "Acoustic panels, steel frame",
- "Acoustics": "Sound reduction up to 35dB",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Acoustic panels",
+ "Design": "Lightweight, frameless; no brackets needed",
+ "Use Cases": "Open‑plan privacy and distraction reduction",
+ "Warranty": "5 years"
},
- "reviewsCount": 10,
"galleryPairs": [
- {
- "left": "assets/images/conference_room.jpg",
- "right": "assets/images/conference_room.jpg"
- }
- ],
- "dimensions": "180cm x 90cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON SCREEN-2.jpg",
+ "assets/images/products/categories/screens/global-mute-cocoon/GLOBAL-MUTE-COCOON-SCREEN.png.jpg"
+ ]
},
{
"id": 8,
- "name": "Respira",
- "description": "Private phone booth with acoustic insulation and ventilation. Ideal for confidential calls and focused work sessions.",
- "image": "assets/images/conference_rooms.jpg",
- "alt": "Respira",
- "category": "storage",
- "price": 599.99,
- "inStock": true,
- "modelNo": "ST008",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "originalPrice": 599.99,
- "rating": "4.7",
- "reviews": 89,
+ "name": "Global Mute Desk",
+ "description": "Frameless pinnable desk screens for a modern, minimal look. Fits seamlessly with all desk system ranges. Easy to maintain and built for everyday use.",
+ "image": "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp",
+ "alt": "Global Mute Desk",
+ "category": "screens",
"images": [
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg"
+ "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp",
+ "assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp",
+ "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-SCREEN-1.jpg"
],
"descriptionLong": [
- "Ensure privacy and focus with our professional phone booth solution. Designed for modern open-plan offices, these booths provide the perfect environment for confidential calls, video conferences, and focused work sessions.",
- "The booth features advanced acoustic insulation, integrated ventilation, and optional power solutions. The compact design maximizes space efficiency while providing a comfortable, private environment for professional communication needs."
+ "Frameless, pinnable desk screens with a minimal look. Seamlessly fits all desk system ranges.",
+ "Easy maintenance; made for everyday use. It is backed by a 5-year warranty."
],
"additionalInformation": {
- "Material": "Acoustic panels, tempered glass",
- "Privacy": "Sound reduction up to 40dB",
- "Dimensions": "See size options",
- "Warranty": "2 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Acoustic panels",
+ "Design": "Frameless, pinnable; minimal aesthetic",
+ "Compatibility": "All desk system ranges",
+ "Care": "Easy to maintain",
+ "Warranty": "5 years"
},
- "reviewsCount": 89,
"galleryPairs": [
- {
- "left": "assets/images/conference_rooms.jpg",
- "right": "assets/images/conference_rooms.jpg"
- }
- ],
- "dimensions": "80cm x 40cm x 180cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/screens/global-mute-desk/GLOBAL-MUTE-DESK-BASED-SCREEN.webp",
+ "assets/images/products/categories/screens/global-mute-desk/MUTE-DESK-BASED-SCREEN-2.webp"
+ ]
},
{
"id": 9,
- "name": "Lounge Chairs",
- "description": "Modular workstation with integrated storage and cable management. Designed for efficient workspace organization.",
- "image": "assets/images/lounge_chair.jpg",
- "alt": "Lounge Chairs",
- "category": "seating",
- "price": 299.99,
- "inStock": true,
- "modelNo": "SE009",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 299.99,
- "rating": "4.9",
- "reviews": 58,
+ "name": "Simple",
+ "description": "Full fabric desk screen with smooth rounded corners. Adds privacy while enhancing any workspace. Easy to integrate into open‑plan or individual desk setups.",
+ "image": "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp",
+ "alt": "Simple",
+ "category": "screens",
"images": [
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg"
+ "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp",
+ "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp",
+ "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-3.webp"
],
"descriptionLong": [
- "Optimize your workspace with our modular workstation system. This comprehensive solution combines ergonomic design with intelligent storage and cable management to create highly functional work environments.",
- "The workstation features adjustable components, integrated power solutions, and customizable storage options. The modular design allows for easy reconfiguration as workspace needs evolve, while the premium materials ensure long-lasting performance."
+ "Full fabric desk screen with smooth rounded corners. Adds privacy while elevating the workspace look.",
+ "Integrates easily into open‑plan and individual desk setups. It is backed by a 5-year warranty."
],
"additionalInformation": {
- "Material": "Engineered wood, steel frame",
- "Modularity": "Fully customizable configuration",
- "Dimensions": "See size options",
- "Warranty": "5 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum frame",
+ "Design": "Minimalist and clean aesthetic",
+ "Warranty": "5 years"
},
- "reviewsCount": 58,
"galleryPairs": [
- {
- "left": "assets/images/lounge_chair.jpg",
- "right": "assets/images/lounge_chair.jpg"
- }
- ],
- "dimensions": "120cm x 75cm x 85cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-1.webp",
+ "assets/images/products/categories/screens/simple/SIMPLE-SCREEN-2.webp"
+ ]
},
{
"id": 10,
- "name": "Leviosa",
- "description": "Professional conference table with integrated technology and cable management. Perfect for executive meetings and presentations.",
- "image": "assets/images/office_chair.jpg",
- "alt": "Leviosa",
- "category": "seating",
- "price": 349.99,
- "inStock": true,
- "modelNo": "SE010",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 349.99,
- "rating": "4.7",
- "reviews": 82,
+ "name": "Diamond Loop",
+ "description": "Distinctive triangular loop leg profile for a stylish touch. Executive desk with a clean, modern design. Wide surface area for work, meetings, and accessories.",
+ "image": "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg",
+ "alt": "Diamond Loop",
+ "category": "executive-desks",
"images": [
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg"
+ "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg",
+ "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg",
+ "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-OPEN-PLAN-1.jpg"
],
"descriptionLong": [
- "Elevate your meeting experience with our professional conference table. Designed for executive environments and important presentations, this table combines sophisticated design with integrated technology solutions.",
- "The table features built-in power outlets, cable management systems, and optional AV integration. The premium finish and robust construction ensure it makes a lasting impression while providing the functionality needed for productive meetings."
+ "Diamond Loop features a distinctive triangular loop leg profile for a stylish touch. The clean, modern design provides a wide surface area suitable for work, meetings, and accessories.",
+ "Built for executive settings that value statement design and functional workspace."
],
"additionalInformation": {
- "Material": "Solid wood top, steel frame",
- "Technology": "Integrated power and cable management",
- "Dimensions": "See size options",
- "Warranty": "5 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium wood top, aluminum frame",
+ "Technology": "Integrated cable management system",
+ "Warranty": "5 years"
},
- "reviewsCount": 82,
"galleryPairs": [
- {
- "left": "assets/images/office_chair.jpg",
- "right": "assets/images/office_chair.jpg"
- }
- ],
- "dimensions": "90cm x 90cm x 85cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-MANAGERIAL-DESK.jpg",
+ "assets/images/products/categories/executive-desks/diamond-loop/DIAMOND-LOOP-IN-OPEN-PLAN-3.jpg"
+ ]
},
{
"id": 11,
- "name": "Lolito",
- "description": "Professional table solution with durable construction and versatile design. Perfect for meetings, collaboration, and workspace organization.",
- "image": "assets/images/conference_room.jpg",
- "alt": "Lolito",
- "category": "tables",
- "price": 899.99,
- "inStock": true,
- "modelNo": "TA011",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "originalPrice": 899.99,
- "rating": "4.3",
- "reviews": 38,
+ "name": "Allure",
+ "description": "Modern L-shape design with a spacious work surface for multitasking. Perfect for private offices or executive spaces.",
+ "image": "assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg",
+ "alt": "Allure",
+ "category": "executive-desks",
"images": [
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg"
+ "assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg",
+ "assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg",
+ "assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_07_600x600px.jpg"
],
"descriptionLong": [
- "This professional table solution is designed to meet the diverse needs of modern workplaces. Combining durability with versatile design, it provides the perfect foundation for productive meetings and collaborative work.",
- "The table features premium materials and construction techniques that ensure years of reliable use. The thoughtful design includes integrated cable management and optional power solutions to support modern work requirements."
+ "Allure features a modern L-shape design that maximizes surface area and workflow. The spacious work surface supports multitasking, meetings, and accessories.",
+ "An excellent fit for private offices or executive spaces seeking a refined look."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium worktop, sturdy frame",
+ "Design": "Modern L-shape with refined look",
+ "Work Surface": "Spacious surface for multitasking",
+ "Use Cases": "Private offices, executive spaces",
+ "Warranty": "5 years"
},
- "reviewsCount": 38,
"galleryPairs": [
- {
- "left": "assets/images/conference_room.jpg",
- "right": "assets/images/conference_room.jpg"
- }
- ],
- "dimensions": "200cm x 100cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/executive-desks/allure/ALLURE-EXECUTIVE-DESK.jpg",
+ "assets/images/products/categories/executive-desks/allure/Thumbnail_Desks-Tables_Desks_Alluree_Categories_Gallery_00_600x600px.jpg"
+ ]
},
{
"id": 12,
- "name": "Respira",
- "description": "Efficient storage solution with intelligent organization features. Essential for maintaining organized and productive work environments.",
- "image": "assets/images/conference_rooms.jpg",
- "alt": "Respira",
- "category": "storage",
- "price": 599.99,
- "inStock": true,
- "modelNo": "ST012",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "originalPrice": 599.99,
- "rating": "4.6",
- "reviews": 11,
+ "name": "Ecocentric Lite",
+ "description": "Executive desk designed with a professional look. Comes with a 3 drawer pedestal for organized storage. Ideal for managerial and clerical offices.",
+ "image": "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg",
+ "alt": "Ecocentric Lite",
+ "category": "executive-desks",
"images": [
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg"
+ "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-DESK-IN-NW-BLACK.jpg",
+ "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-ACACIA-AND-BLACK.jpg",
+ "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-DARK-EUCALYPTUS-AND-BLACK.jpg",
+ "assets/images/products/categories/executive-desks/ecocentric-lite/ECOCENTRIC-LITE-IN-NATURAL-WALNUT.jpg"
],
"descriptionLong": [
- "Maximize workspace efficiency with this intelligent storage solution. Designed to meet the organizational needs of modern offices, it provides secure and accessible storage for all workplace essentials.",
- "The storage unit features adjustable components, integrated security options, and premium materials that ensure long-lasting performance. The modular design allows for easy customization to fit specific storage requirements."
+ "Ecocentric Lite is an executive desk designed with a professional look. It comes with a 3 drawer pedestal for organized storage and daily efficiency.",
+ "Ideal for managerial and clerical offices that need practical, reliable workspace."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Professional worktop, sturdy frame",
+ "Design": "Professional executive look",
+ "Storage": "Includes 3 drawer pedestal",
+ "Use Cases": "Managerial and clerical offices",
+ "Warranty": "5 years"
},
- "reviewsCount": 11,
"galleryPairs": [
- {
- "left": "assets/images/conference_rooms.jpg",
- "right": "assets/images/conference_rooms.jpg"
- }
- ],
- "dimensions": "70cm x 35cm x 160cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_00_600x600px.jpg",
+ "assets/images/products/categories/executive-desks/ecocentric-lite/Thumbnail_Desks-Tables_Desks_Ecocentric-Lite_Categories_Gallery_02_600x600px.jpg"
+ ]
},
{
"id": 13,
- "name": "Lounge Chairs",
- "description": "Premium seating solution designed for modern office environments. Combines comfort, style, and durability for professional workspaces.",
- "image": "assets/images/lounge_chair.jpg",
- "alt": "Lounge Chairs",
- "category": "seating",
- "price": 299.99,
- "inStock": true,
- "modelNo": "SE013",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 299.99,
- "rating": "5.0",
- "reviews": 48,
+ "name": "Evolution L-Shape",
+ "description": "Sleek L-shape design for a modern office look. Designed to fit seamlessly into modern office layouts.",
+ "image": "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png",
+ "alt": "Evolution L-Shape",
+ "category": "executive-desks",
"images": [
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg",
- "assets/images/lounge_chair.jpg"
+ "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png",
+ "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg",
+ "assets/images/products/categories/executive-desks/evolution-l-shape/92dpi-12-300x300.jpg",
+ "assets/images/products/categories/executive-desks/evolution-l-shape/MTC-minerals-IXAXA-12-2017-2105-800x800.jpg"
],
"descriptionLong": [
- "This premium seating solution is engineered for the modern workplace, offering the perfect balance of comfort, style, and functionality. Designed with ergonomic principles and premium materials, it provides exceptional support for extended use.",
- "The chair features advanced ergonomic design with adjustable components and breathable materials. The durable construction ensures long-lasting performance while the contemporary aesthetic enhances any office environment."
+ "Evolution L delivers a sleek L-shape design for a modern office look. It's designed to fit seamlessly into modern office layouts and workflows.",
+ "A refined, space‑efficient solution for contemporary executive environments."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium worktop, sturdy frame",
+ "Design": "Sleek L-shape for modern office look",
+ "Integration": "Fits seamlessly into modern office layouts",
+ "Warranty": "5 years"
},
- "reviewsCount": 48,
"galleryPairs": [
- {
- "left": "assets/images/lounge_chair.jpg",
- "right": "assets/images/lounge_chair.jpg"
- }
- ],
- "dimensions": "180cm x 85cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-with-pedenza-600x600.png",
+ "assets/images/products/categories/executive-desks/evolution-l-shape/evolution-manager-pedenza-300x300.jpg"
+ ]
},
{
"id": 14,
- "name": "Leviosa",
- "description": "Premium seating solution designed for modern office environments. Combines comfort, style, and durability for professional workspaces.",
- "image": "assets/images/office_chair.jpg",
- "alt": "Leviosa",
- "category": "seating",
- "price": 349.99,
- "inStock": true,
- "modelNo": "SE014",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 349.99,
- "rating": "4.1",
- "reviews": 50,
+ "name": "Diamond Exec",
+ "description": "Stylish executive desk with a modern, refined look. Unique triangular leg design that stands out. A perfect fit for professional and executive offices. Optional modesty panel.",
+ "image": "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg",
+ "alt": "Diamond Exec",
+ "category": "executive-desks",
"images": [
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg"
+ "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-3.jpg",
+ "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-4.jpg",
+ "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-5.jpg",
+ "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK-1.jpg"
],
"descriptionLong": [
- "This premium seating solution is engineered for the modern workplace, offering the perfect balance of comfort, style, and functionality. Designed with ergonomic principles and premium materials, it provides exceptional support for extended use.",
- "The chair features advanced ergonomic design with adjustable components and breathable materials. The durable construction ensures long-lasting performance while the contemporary aesthetic enhances any office environment."
+ "Diamond Exec is a stylish executive desk with a modern, refined look. It features a unique triangular leg design that stands out in professional settings.",
+ "A perfect fit for executive offices, with an optional modesty panel available."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium worktop, distinct triangular leg frame",
+ "Design": "Modern, refined executive look",
+ "Leg Profile": "Unique triangular leg design",
+ "Modesty Panel": "Optional modesty panel",
+ "Use Cases": "Professional and executive offices",
+ "Warranty": "5 years"
},
- "reviewsCount": 50,
"galleryPairs": [
- {
- "left": "assets/images/office_chair.jpg",
- "right": "assets/images/office_chair.jpg"
- }
- ],
- "dimensions": "65cm x 65cm x 85cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-EXEC-7.jpg",
+ "assets/images/products/categories/executive-desks/diamond-exec/DIAMOND-MANAGERIAL-DESK.jpg"
+ ]
},
{
"id": 15,
- "name": "Lolito",
- "description": "Professional table solution with durable construction and versatile design. Perfect for meetings, collaboration, and workspace organization.",
- "image": "assets/images/conference_room.jpg",
- "alt": "Lolito",
- "category": "tables",
- "price": 899.99,
- "inStock": true,
- "modelNo": "TA015",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "originalPrice": 899.99,
- "rating": "4.6",
- "reviews": 22,
+ "name": "Classical",
+ "description": "Timeless design with a modern executive feel, ideal for conference rooms, boardrooms, and visitor areas. Features choice of black base or chrome base with upholstered seat and back for lasting comfort.",
+ "image": "assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg",
+ "alt": "Classical",
+ "category": "conference-chairs",
"images": [
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg"
+ "assets/images/products/categories/conference-chairs/classical/Classical-Chr_Black-HB-02a.jpg",
+ "assets/images/products/categories/conference-chairs/classical/Classical-Chr_Whte-HB-02a.jpg",
+ "assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-02.jpg",
+ "assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-04.jpg"
],
"descriptionLong": [
- "This professional table solution is designed to meet the diverse needs of modern workplaces. Combining durability with versatile design, it provides the perfect foundation for productive meetings and collaborative work.",
- "The table features premium materials and construction techniques that ensure years of reliable use. The thoughtful design includes integrated cable management and optional power solutions to support modern work requirements."
+ "The Classical conference chair embodies timeless design with a modern executive feel, creating the perfect balance between traditional elegance and contemporary sophistication. This distinguished chair is ideal for conference rooms, boardrooms, and visitor areas, making a powerful statement in any professional environment.",
+ "Featuring a choice of black base or chrome base, the Classical chair offers flexibility to match your office aesthetic and design preferences. The chrome base provides a sleek, modern appearance, while the black base offers a more traditional, executive look that complements any professional setting.",
+ "Upholstered seat and back ensure lasting comfort during extended meetings and important discussions. The premium upholstery provides exceptional support and durability, while the timeless design ensures this chair remains a valuable asset in your office for years to come."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Upholstered seat and back, premium frame construction",
+ "Design": "Timeless design with modern executive feel",
+ "Base Options": "Choice of black base or chrome base",
+ "Use Cases": "Ideal for conference rooms, boardrooms, and visitor areas",
+ "Comfort Features": "Upholstered seat and back for lasting comfort",
+ "Executive Appeal": "Perfect balance between traditional elegance and contemporary sophistication",
+ "Professional Setting": "Makes powerful statement in any professional environment",
+ "Flexibility": "Offers flexibility to match office aesthetic and design preferences",
+ "Chrome Base": "Chrome base provides sleek, modern appearance",
+ "Black Base": "Black base offers traditional, executive look",
+ "Durability": "Premium upholstery provides exceptional support and durability",
+ "Longevity": "Timeless design ensures valuable asset for years to come",
+ "Meeting Comfort": "Ensures lasting comfort during extended meetings and discussions",
+ "Warranty": "5 years"
},
- "reviewsCount": 22,
"galleryPairs": [
- {
- "left": "assets/images/conference_room.jpg",
- "right": "assets/images/conference_room.jpg"
- }
- ],
- "dimensions": "150cm x 80cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/classical/Classical-HB-Black_Blk-New-05.jpg",
+ "assets/images/products/categories/conference-chairs/classical/Classical-HB-Tan-New-02.jpg",
+ "assets/images/products/categories/conference-chairs/classical/Seating_Classical_Black_Gallery_05_600x600px.webp",
+ "assets/images/products/categories/conference-chairs/classical/Seating_Classical_Grey_Black_Gallery_01_600x600px.webp"
+ ]
},
{
"id": 16,
- "name": "Respira",
- "description": "Efficient storage solution with intelligent organization features. Essential for maintaining organized and productive work environments.",
- "image": "assets/images/conference_rooms.jpg",
- "alt": "Respira",
- "category": "storage",
- "price": 599.99,
- "inStock": true,
- "modelNo": "ST016",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "originalPrice": 599.99,
- "rating": "5.0",
- "reviews": 95,
+ "name": "Messi",
+ "description": "Minimalist, modern style conference chair perfect for meeting rooms and workspace. Features height adjustment lever built into the chair shell for a clean look, perfectly suited for meeting rooms, boardrooms, and conference spaces.",
+ "image": "assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg",
+ "alt": "Messi",
+ "category": "conference-chairs",
"images": [
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg"
+ "assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg",
+ "assets/images/products/categories/conference-chairs/messi/MESSI-4.jpg",
+ "assets/images/products/categories/conference-chairs/messi/MESSI-5.jpg",
+ "assets/images/products/categories/conference-chairs/messi/MESSI-6.jpg"
],
"descriptionLong": [
- "Maximize workspace efficiency with this intelligent storage solution. Designed to meet the organizational needs of modern offices, it provides secure and accessible storage for all workplace essentials.",
- "The storage unit features adjustable components, integrated security options, and premium materials that ensure long-lasting performance. The modular design allows for easy customization to fit specific storage requirements."
+ "The Messi conference chair embodies minimalist, modern style that's perfect for meeting rooms and workspace environments. This sophisticated chair combines clean aesthetics with exceptional functionality, creating an ideal seating solution for contemporary professional settings.",
+ "Featuring a height adjustment lever built into the chair shell for a clean look, the Messi chair maintains its sleek, uncluttered appearance while providing essential ergonomic functionality. The integrated adjustment mechanism ensures easy height customization without compromising the chair's minimalist design aesthetic.",
+ "Perfectly suited for meeting rooms, boardrooms, and conference spaces, the Messi chair delivers the perfect balance of style and comfort. The minimalist approach creates a professional atmosphere while the modern design ensures this chair remains a timeless addition to any contemporary workspace."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Minimalist, modern style perfect for meeting rooms and workspace",
+ "Height Adjustment": "Height adjustment lever built into the chair shell for a clean look",
+ "Use Cases": "Perfectly suited for meeting rooms, boardrooms, and conference spaces",
+ "Aesthetic Appeal": "Combines clean aesthetics with exceptional functionality",
+ "Ergonomic Features": "Integrated adjustment mechanism ensures easy height customization",
+ "Design Philosophy": "Maintains sleek, uncluttered appearance without compromising functionality",
+ "Professional Setting": "Creates ideal seating solution for contemporary professional settings",
+ "Minimalist Approach": "Creates professional atmosphere with clean, uncluttered design",
+ "Modern Design": "Ensures timeless addition to any contemporary workspace",
+ "Functionality": "Provides essential ergonomic functionality with integrated controls",
+ "Versatility": "Perfect balance of style and comfort for various professional environments",
+ "Clean Look": "Height adjustment lever integrated into chair shell maintains clean aesthetic",
+ "Warranty": "5 years"
},
- "reviewsCount": 95,
"galleryPairs": [
- {
- "left": "assets/images/conference_rooms.jpg",
- "right": "assets/images/conference_rooms.jpg"
- }
- ],
- "dimensions": "60cm x 40cm x 120cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/messi/MESSI-7.jpg",
+ "assets/images/products/categories/conference-chairs/messi/MESSI-3.jpg"
+ ]
},
{
"id": 17,
- "name": "Workstation",
- "description": "Professional table solution with durable construction and versatile design. Perfect for meetings, collaboration, and workspace organization.",
- "image": "assets/images/workstation.jpg",
- "alt": "Workstation",
- "category": "tables",
- "price": 499.99,
- "inStock": true,
- "modelNo": "TA017",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "originalPrice": 499.99,
- "rating": "4.2",
- "reviews": 104,
+ "name": "Alya",
+ "description": "Comfortable conference chair with supportive cushioning. Designed for conference rooms, boardrooms, and executive settings. Offered in low, medium, or high back versions.",
+ "image": "assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp",
+ "alt": "Alya",
+ "category": "conference-chairs",
"images": [
- "assets/images/workstation.jpg",
- "assets/images/workstation.jpg",
- "assets/images/workstation.jpg",
- "assets/images/workstation.jpg"
+ "assets/images/products/categories/conference-chairs/alya/alya_executive_andreu_world_SO1473_armchair_1.webp",
+ "assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-bu1489-andreu-world_2.webp",
+ "assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_2_1.webp",
+ "assets/images/products/categories/conference-chairs/alya/alya-executive-lounge-chairs-so1479-andreu-world_3_1.webp"
],
"descriptionLong": [
- "This professional table solution is designed to meet the diverse needs of modern workplaces. Combining durability with versatile design, it provides the perfect foundation for productive meetings and collaborative work.",
- "The table features premium materials and construction techniques that ensure years of reliable use. The thoughtful design includes integrated cable management and optional power solutions to support modern work requirements."
+ "The Alya conference chair features a comfortable seat with supportive cushioning that ensures exceptional comfort during extended meetings and conferences. This sophisticated chair is specifically designed for conference rooms, boardrooms, and executive settings, providing the perfect balance of comfort and professional aesthetics.",
+ "Available in low, medium, or high back versions, the Alya chair offers flexibility to meet diverse seating requirements and user preferences. Whether you need a low back chair for open collaborative spaces, a medium back for standard conference rooms, or a high back for executive boardrooms, the Alya adapts to your specific environment and comfort needs.",
+ "The supportive cushioning system of the Alya chair provides superior comfort and ergonomic support, making it ideal for long meetings and executive sessions. The carefully designed cushioning ensures proper spinal alignment and reduces fatigue, while the professional styling maintains an impressive presence in any corporate or executive setting."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium leather, aluminum base",
+ "Design": "Comfortable seat with supportive cushioning",
+ "Comfort Features": "Comfortable seat with supportive cushioning for exceptional comfort",
+ "Target Settings": "Designed for conference rooms, boardrooms, and executive settings",
+ "Back Options": "Offered in low, medium, or high back versions",
+ "Flexibility": "Offers flexibility to meet diverse seating requirements and user preferences",
+ "Low Back Version": "Perfect for open collaborative spaces",
+ "Medium Back Version": "Ideal for standard conference rooms",
+ "High Back Version": "Excellent for executive boardrooms",
+ "Adaptability": "Adapts to specific environment and comfort needs",
+ "Supportive Cushioning": "Supportive cushioning system provides superior comfort and ergonomic support",
+ "Long Meeting Comfort": "Ideal for long meetings and executive sessions",
+ "Spinal Alignment": "Carefully designed cushioning ensures proper spinal alignment",
+ "Fatigue Reduction": "Reduces fatigue during extended use",
+ "Professional Styling": "Professional styling maintains impressive presence in any corporate or executive setting",
+ "Ergonomic Support": "Provides superior comfort and ergonomic support",
+ "Executive Sessions": "Perfect for executive sessions and important meetings",
+ "Corporate Setting": "Maintains impressive presence in any corporate or executive setting",
+ "Warranty": "5 years"
},
- "reviewsCount": 104,
"galleryPairs": [
- {
- "left": "assets/images/workstation.jpg",
- "right": "assets/images/workstation.jpg"
- }
- ],
- "dimensions": "200cm x 100cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_1 (1).webp",
+ "assets/images/products/categories/conference-chairs/alya/andreu_world_alya_executive_so1482_2 (1).webp"
+ ]
},
{
"id": 18,
- "name": "Storage Unit",
- "description": "Efficient storage solution with intelligent organization features. Essential for maintaining organized and productive work environments.",
- "image": "assets/images/storage.jpg",
- "alt": "Storage Unit",
- "category": "storage",
- "price": 259.99,
- "inStock": true,
- "modelNo": "ST018",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "originalPrice": 259.99,
- "rating": "4.9",
- "reviews": 63,
+ "name": "Unique Swivel",
+ "description": "Conference chair that combines modern simplicity with elegant style. Features a refined look that leaves a lasting impression, versatile for both meeting rooms and visitors seating.",
+ "image": "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg",
+ "alt": "Unique Swivel",
+ "category": "conference-chairs",
"images": [
- "assets/images/storage.jpg",
- "assets/images/storage.jpg",
- "assets/images/storage.jpg",
- "assets/images/storage.jpg"
+ "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-01.jpg",
+ "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-03.webp",
+ "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg",
+ "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg"
],
"descriptionLong": [
- "Maximize workspace efficiency with this intelligent storage solution. Designed to meet the organizational needs of modern offices, it provides secure and accessible storage for all workplace essentials.",
- "The storage unit features adjustable components, integrated security options, and premium materials that ensure long-lasting performance. The modular design allows for easy customization to fit specific storage requirements."
+ "The Unique Swivel conference chair masterfully combines modern simplicity with elegant style, creating a sophisticated seating solution that enhances any professional environment. This distinguished chair features a refined look that leaves a lasting impression, making it the perfect choice for spaces where aesthetics and functionality are equally important.",
+ "Versatile for both meeting rooms and visitors seating, the Unique Swivel chair adapts seamlessly to various professional settings. Whether used in formal conference environments or welcoming reception areas, this chair maintains its elegant appeal while providing exceptional comfort and functionality for all users.",
+ "The refined design philosophy of the Unique Swivel chair ensures it remains a timeless addition to any workspace. Its modern simplicity paired with elegant style creates an atmosphere of sophistication and professionalism, making every interaction more memorable and every space more inviting."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Combines modern simplicity with elegant style",
+ "Aesthetic Appeal": "Refined look that leaves a lasting impression",
+ "Versatility": "Versatile for both meeting rooms and visitors seating",
+ "Design Philosophy": "Masterfully combines modern simplicity with elegant style",
+ "Professional Enhancement": "Creates sophisticated seating solution that enhances any professional environment",
+ "Lasting Impression": "Distinguished chair features refined look that leaves lasting impression",
+ "Adaptability": "Adapts seamlessly to various professional settings",
+ "Meeting Room Use": "Perfect for formal conference environments",
+ "Visitor Seating": "Ideal for welcoming reception areas",
+ "Elegant Appeal": "Maintains elegant appeal while providing exceptional comfort and functionality",
+ "Timeless Design": "Refined design philosophy ensures timeless addition to any workspace",
+ "Atmosphere Creation": "Creates atmosphere of sophistication and professionalism",
+ "Memorable Interactions": "Makes every interaction more memorable and every space more inviting",
+ "Warranty": "5 years"
},
- "reviewsCount": 63,
"galleryPairs": [
- {
- "left": "assets/images/storage.jpg",
- "right": "assets/images/storage.jpg"
- }
- ],
- "dimensions": "70cm x 35cm x 160cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Black-05.jpg",
+ "assets/images/products/categories/conference-chairs/unique-swivel/Unique-Swivel-Amber-01.jpg"
+ ]
},
{
"id": 19,
- "name": "Pods",
- "description": "Innovative workspace solution designed for modern office needs. Combines functionality with contemporary design for optimal productivity.",
- "image": "assets/images/pods.jpg",
- "alt": "Pods",
- "category": "workspace",
- "price": 1299.99,
- "inStock": true,
- "modelNo": "WO019",
- "tags": ["Workspace", "Pod", "Meeting", "Collaboration"],
- "sizes": ["M", "L"],
- "colors": [
- {
- "name": "Blue",
- "value": "#4169E1",
- "selected": true
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Blue",
- "originalPrice": 1299.99,
- "rating": "4.7",
- "reviews": 11,
+ "name": "Chico Swivel",
+ "description": "Modern design conference chair with a gently curved backrest. Features standard fabric in emerald green, fawn brown and grey. Comfortable design that suits both formal and casual spaces.",
+ "image": "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg",
+ "alt": "Chico Swivel",
+ "category": "conference-chairs",
"images": [
- "assets/images/pods.jpg",
- "assets/images/pods.jpg",
- "assets/images/pods.jpg",
- "assets/images/pods.jpg"
+ "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-01.jpg",
+ "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-04.jpg",
+ "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Brown-05.jpg",
+ "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-01.jpg"
],
"descriptionLong": [
- "Transform your workspace with this innovative solution designed for modern office environments. Combining cutting-edge design with practical functionality, it creates the perfect environment for focused work and collaboration.",
- "The workspace solution features premium materials, intelligent design, and customizable components that adapt to various work requirements. The contemporary aesthetic enhances any office environment while providing the functionality needed for productive work."
+ "The Chico Swivel conference chair features a modern design with a gently curved backrest that provides exceptional comfort and visual appeal. This sophisticated chair combines contemporary aesthetics with superior functionality, making it the perfect choice for professional environments that demand both style and comfort.",
+ "Available in standard fabric with three elegant color options - emerald green, fawn brown, and grey - the Chico Swivel chair offers versatility to match any interior design scheme. The carefully selected color palette ensures this chair seamlessly integrates into various professional settings while maintaining its distinctive modern character.",
+ "The comfortable design of the Chico Swivel chair makes it perfectly suited for both formal and casual spaces. Whether used in executive boardrooms, conference rooms, or welcoming reception areas, this chair provides exceptional comfort and support while maintaining its elegant, professional appearance throughout extended use."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Standard fabric, aluminum base",
+ "Design": "Modern design with a gently curved backrest",
+ "Backrest Design": "Gently curved backrest for exceptional comfort and visual appeal",
+ "Fabric Options": "Standard fabric in emerald green, fawn brown and grey",
+ "Color Palette": "Three elegant color options - emerald green, fawn brown, and grey",
+ "Versatility": "Versatile to match any interior design scheme",
+ "Professional Integration": "Seamlessly integrates into various professional settings",
+ "Modern Character": "Maintains distinctive modern character",
+ "Comfortable Design": "Comfortable design that suits both formal and casual spaces",
+ "Formal Spaces": "Perfect for executive boardrooms and conference rooms",
+ "Casual Spaces": "Ideal for welcoming reception areas",
+ "Comfort and Support": "Provides exceptional comfort and support",
+ "Professional Appearance": "Maintains elegant, professional appearance throughout extended use",
+ "Contemporary Aesthetics": "Combines contemporary aesthetics with superior functionality",
+ "Style and Comfort": "Perfect choice for professional environments that demand both style and comfort",
+ "Warranty": "5 years"
},
- "reviewsCount": 11,
"galleryPairs": [
- {
- "left": "assets/images/pods.jpg",
- "right": "assets/images/pods.jpg"
- }
- ],
- "dimensions": "140cm x 70cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Emerald-Green-02.jpg",
+ "assets/images/products/categories/conference-chairs/chico-swivel/Chico-4-Star-Stone-Grey-02.jpg"
+ ]
},
{
"id": 20,
- "name": "Phone Booth",
- "description": "Innovative workspace solution designed for modern office needs. Combines functionality with contemporary design for optimal productivity.",
- "image": "assets/images/phone.png",
- "alt": "Phone Booth",
- "category": "workspace",
- "price": 399.99,
- "inStock": true,
- "modelNo": "WO020",
- "tags": ["Workspace", "Pod", "Meeting", "Collaboration"],
- "sizes": ["M", "L"],
- "colors": [
- {
- "name": "Blue",
- "value": "#4169E1",
- "selected": true
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Blue",
- "originalPrice": 399.99,
- "rating": "4.4",
- "reviews": 23,
+ "name": "Flex",
+ "description": "Professional conference chair with Flex design. Perfect for meeting rooms and conference environments requiring comfort and style.",
+ "image": "assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp",
+ "alt": "Flex",
+ "category": "conference-chairs",
"images": [
- "assets/images/phone.png",
- "assets/images/phone.png",
- "assets/images/phone.png",
- "assets/images/phone.png"
+ "assets/images/products/categories/conference-chairs/flex/flex_chair_andreu_world_SO1305_armchair_1.webp",
+ "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1844_armchair_1.webp",
+ "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1845_armchair_1.webp",
+ "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp"
],
"descriptionLong": [
- "Transform your workspace with this innovative solution designed for modern office environments. Combining cutting-edge design with practical functionality, it creates the perfect environment for focused work and collaboration.",
- "The workspace solution features premium materials, intelligent design, and customizable components that adapt to various work requirements. The contemporary aesthetic enhances any office environment while providing the functionality needed for productive work."
+ "Experience professional comfort with our Flex conference chair. This sophisticated chair combines elegant design with superior functionality, perfect for meeting rooms and conference environments.",
+ "The Flex chair features premium materials, flexible design, and ergonomic elements. The professional construction and refined finish create an impressive presence while providing exceptional comfort for extended meetings and conferences."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Professional conference aesthetic",
+ "Warranty": "5 years"
},
- "reviewsCount": 23,
"galleryPairs": [
- {
- "left": "assets/images/phone.png",
- "right": "assets/images/phone.png"
- }
- ],
- "dimensions": "120cm x 60cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1860_armchair_1.webp",
+ "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1861_armchair_1.webp",
+ "assets/images/products/categories/conference-chairs/flex/flex_executive_andreu_world_SO1846_armchair_1.webp"
+ ]
},
{
"id": 21,
- "name": "Our Story",
- "description": "Efficient storage solution with intelligent organization features. Essential for maintaining organized and productive work environments.",
- "image": "assets/images/our_story.jpg",
- "alt": "Art",
- "category": "storage",
- "price": 149.99,
- "inStock": true,
- "modelNo": "ST021",
- "tags": ["Storage", "Cabinet", "Office", "Organization"],
- "sizes": ["M", "L", "XL"],
- "colors": [
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": true
- },
- {
- "name": "Black",
- "value": "#000000",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "XL",
- "selectedColor": "White",
- "originalPrice": 149.99,
- "rating": "4.6",
- "reviews": 20,
+ "name": "Cappa",
+ "description": "Contemporary conference chair with smooth, curved edge design. Features comfortable seat for meeting and conference use, wide choice of finishes and colors, versatile for offices, conference rooms, and collaborative spaces.",
+ "image": "assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp",
+ "alt": "Cappa",
+ "category": "conference-chairs",
"images": [
- "assets/images/our_story.jpg",
- "assets/images/our_story.jpg",
- "assets/images/our_story.jpg",
- "assets/images/our_story.jpg"
+ "assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp",
+ "assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp",
+ "assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_SLED_WHITE.webp",
+ "assets/images/products/categories/conference-chairs/cappa/CAPPA_BASE_FLAT.webp"
],
"descriptionLong": [
- "Maximize workspace efficiency with this intelligent storage solution. Designed to meet the organizational needs of modern offices, it provides secure and accessible storage for all workplace essentials.",
- "The storage unit features adjustable components, integrated security options, and premium materials that ensure long-lasting performance. The modular design allows for easy customization to fit specific storage requirements."
+ "The Cappa conference chair delivers contemporary comfort with its smooth, curved edge design. This sophisticated chair combines modern aesthetics with exceptional functionality, creating the perfect seating solution for meeting rooms, conference environments, and collaborative spaces.",
+ "Featuring a comfortable seat specifically designed for meeting and conference use, the Cappa chair ensures optimal comfort during extended discussions and presentations. The ergonomic design promotes proper posture and reduces fatigue, making it ideal for long meetings and collaborative work sessions.",
+ "Available with a wide choice of finishes and colors, the Cappa chair offers versatility to match any office aesthetic or brand identity. Whether used in formal conference rooms, modern offices, or collaborative spaces, this chair seamlessly integrates into any environment while providing exceptional comfort and professional appeal."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Contemporary design with smooth, curved edge",
+ "Comfort Features": "Comfortable seat for meeting and conference use",
+ "Finish Options": "Wide choice of finishes and colors available",
+ "Use Cases": "Versatile for offices, conference rooms, and collaborative spaces",
+ "Ergonomic Design": "Promotes proper posture and reduces fatigue",
+ "Meeting Focus": "Specifically designed for extended discussions and presentations",
+ "Versatility": "Seamlessly integrates into any environment",
+ "Professional Appeal": "Provides exceptional comfort and professional appeal",
+ "Collaborative Spaces": "Ideal for long meetings and collaborative work sessions",
+ "Aesthetic Integration": "Matches any office aesthetic or brand identity",
+ "Modern Aesthetics": "Combines modern aesthetics with exceptional functionality",
+ "Warranty": "5 years"
},
- "reviewsCount": 20,
"galleryPairs": [
- {
- "left": "assets/images/our_story.jpg",
- "right": "assets/images/our_story.jpg"
- }
- ],
- "dimensions": "100cm x 50cm x 90cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/cappa/CAPPA_FAMILY.webp",
+ "assets/images/products/categories/conference-chairs/cappa/CAPPA_GAS_BASE_STAR_ALUMINIUM_69.webp"
+ ]
},
{
"id": 22,
- "name": "Office Chair Elite",
- "description": "Premium seating solution designed for modern office environments. Combines comfort, style, and durability for professional workspaces.",
- "image": "assets/images/office_chair.jpg",
- "alt": "Office Chair",
- "category": "seating",
- "price": 399.99,
- "inStock": true,
- "modelNo": "SE022",
- "tags": ["Chair", "Seating", "Office", "Ergonomic"],
- "sizes": ["XS", "S", "M", "L", "XL"],
- "colors": [
- {
- "name": "Black",
- "value": "#000000",
- "selected": true
- },
- {
- "name": "Brown",
- "value": "#8B4513",
- "selected": false
- },
- {
- "name": "Gray",
- "value": "#808080",
- "selected": false
- }
- ],
- "selectedSize": "M",
- "selectedColor": "Black",
- "originalPrice": 399.99,
- "rating": "5.0",
- "reviews": 102,
+ "name": "Kalea 4-Star",
+ "description": "Kalea Swivel 4-star base conference chair in chrome or black painted finish on chrome castors. Features modern, lightweight design with sleek profile, optional seat pad or inner shell upholstered in customer's own fabric, black option available with or without arms.",
+ "image": "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg",
+ "alt": "Kalea 4-Star",
+ "category": "conference-chairs",
"images": [
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg",
- "assets/images/office_chair.jpg"
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_02_600x600px.jpg",
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_22_600x600px.webp",
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_27_600x600px.jpg",
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_32_600x600px.webp"
],
"descriptionLong": [
- "This premium seating solution is engineered for the modern workplace, offering the perfect balance of comfort, style, and functionality. Designed with ergonomic principles and premium materials, it provides exceptional support for extended use.",
- "The chair features advanced ergonomic design with adjustable components and breathable materials. The durable construction ensures long-lasting performance while the contemporary aesthetic enhances any office environment."
+ "The Kalea Swivel 4-star base conference chair delivers exceptional versatility with its chrome or black painted finish on chrome castors. This sophisticated chair features a modern, lightweight design with a sleek profile that seamlessly integrates into any professional environment while providing superior mobility and functionality.",
+ "Featuring optional seat pad or inner shell upholstered in customer's own fabric, the Kalea chair offers complete customization to match your specific design requirements and brand identity. This flexibility allows you to create a truly personalized seating solution that reflects your organization's unique aesthetic and professional standards.",
+ "The black option is available with or without arms, providing additional flexibility for different meeting room configurations and user preferences. Whether you need armrests for enhanced comfort during extended meetings or prefer the clean, minimalist look of armless chairs, the Kalea adapts to your specific needs and space requirements."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Optional seat pad or inner shell upholstered in customer's own fabric",
+ "Design": "Modern, lightweight design with sleek profile",
+ "Base Options": "4-star base in chrome or black painted finish on chrome castors",
+ "Upholstery Options": "Optional seat pad or inner shell upholstered in customer's own fabric",
+ "Arm Options": "Black option available with or without arms",
+ "Customization": "Complete customization to match specific design requirements and brand identity",
+ "Versatility": "Delivers exceptional versatility with multiple finish and configuration options",
+ "Mobility": "Superior mobility and functionality with chrome castors",
+ "Professional Integration": "Seamlessly integrates into any professional environment",
+ "Flexibility": "Provides additional flexibility for different meeting room configurations",
+ "Personalization": "Allows creation of truly personalized seating solution",
+ "Brand Identity": "Reflects organization's unique aesthetic and professional standards",
+ "User Preferences": "Adapts to specific needs and space requirements",
+ "Meeting Comfort": "Enhanced comfort during extended meetings with optional armrests",
+ "Minimalist Option": "Clean, minimalist look of armless chairs available",
+ "Warranty": "5 years"
},
- "reviewsCount": 102,
"galleryPairs": [
- {
- "left": "assets/images/office_chair.jpg",
- "right": "assets/images/office_chair.jpg"
- }
- ],
- "dimensions": "90cm x 90cm x 85cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_33_600x600px.jpg",
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_36_600x600px.webp",
+ "assets/images/products/categories/conference-chairs/kalea-4-star/Seating_Kalea_Gallery_37_600x600px.jpg"
+ ]
},
{
"id": 23,
- "name": "Conference Room A",
- "description": "Professional table solution with durable construction and versatile design. Perfect for meetings, collaboration, and workspace organization.",
- "image": "assets/images/conference_room.jpg",
- "alt": "Conference Room",
- "category": "tables",
- "price": 1099.99,
- "inStock": true,
- "modelNo": "TA023",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "originalPrice": 1099.99,
- "rating": "5.0",
- "reviews": 34,
+ "name": "Glove",
+ "description": "Versatile style suitable for offices, meeting rooms, and reception areas. Features comfortable curved seat for added support.",
+ "image": "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp",
+ "alt": "Glove",
+ "category": "visitors-chair",
"images": [
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg",
- "assets/images/conference_room.jpg"
+ "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_4-SPOKE_BLUE_ARM.webp",
+ "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH.webp",
+ "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_GAS-PISTON_UPHOLSTERED_01.webp",
+ "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_01.webp"
],
"descriptionLong": [
- "This professional table solution is designed to meet the diverse needs of modern workplaces. Combining durability with versatile design, it provides the perfect foundation for productive meetings and collaborative work.",
- "The table features premium materials and construction techniques that ensure years of reliable use. The thoughtful design includes integrated cable management and optional power solutions to support modern work requirements."
+ "The Glove visitors chair features a versatile style that is perfectly suitable for offices, meeting rooms, and reception areas. This sophisticated chair combines contemporary design with exceptional functionality, making it an ideal choice for diverse professional environments that demand both style and comfort.",
+ "Featuring a comfortable curved seat for added support, the Glove chair provides exceptional comfort and ergonomic benefits for users of all sizes. The curved seat design ensures proper spinal alignment and reduces fatigue during extended seating periods, while the versatile styling adapts seamlessly to various professional settings.",
+ "The versatile design of the Glove chair makes it perfect for multiple applications across different professional spaces. Whether used in formal office environments, collaborative meeting rooms, or welcoming reception areas, this chair maintains its professional appearance while delivering superior comfort and support that enhances the overall user experience."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Versatile style suitable for offices, meeting rooms, and reception areas",
+ "Versatile Style": "Versatile style suitable for offices, meeting rooms, and reception areas",
+ "Comfortable Seat": "Comfortable curved seat for added support",
+ "Curved Seat": "Comfortable curved seat for added support",
+ "Added Support": "Curved seat design ensures proper spinal alignment and reduces fatigue",
+ "Target Areas": "Perfect for offices, meeting rooms, and reception areas",
+ "Contemporary Design": "Combines contemporary design with exceptional functionality",
+ "Professional Environments": "Ideal choice for diverse professional environments",
+ "Style and Comfort": "Demands both style and comfort",
+ "Ergonomic Benefits": "Provides exceptional comfort and ergonomic benefits for users of all sizes",
+ "Spinal Alignment": "Curved seat design ensures proper spinal alignment",
+ "Fatigue Reduction": "Reduces fatigue during extended seating periods",
+ "Versatile Styling": "Versatile styling adapts seamlessly to various professional settings",
+ "Multiple Applications": "Perfect for multiple applications across different professional spaces",
+ "Formal Office Environments": "Perfect for formal office environments",
+ "Collaborative Meeting Rooms": "Ideal for collaborative meeting rooms",
+ "Welcoming Reception Areas": "Excellent for welcoming reception areas",
+ "Professional Appearance": "Maintains professional appearance while delivering superior comfort and support",
+ "User Experience": "Enhances the overall user experience",
+ "Superior Comfort": "Delivers superior comfort and support",
+ "Warranty": "5 years"
},
- "reviewsCount": 34,
"galleryPairs": [
- {
- "left": "assets/images/conference_room.jpg",
- "right": "assets/images/conference_room.jpg"
- }
- ],
- "dimensions": "200cm x 100cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_BEECH_SEATPAD.webp",
+ "assets/images/products/categories/visitors-chair/glove-visitors/GLOVE_SELF-CENTRING_UPHOLSTERED_02.webp"
+ ]
},
{
"id": 24,
- "name": "Conference Rooms Set",
- "description": "Professional table solution with durable construction and versatile design. Perfect for meetings, collaboration, and workspace organization.",
- "image": "assets/images/conference_rooms.jpg",
- "alt": "Conference Rooms",
- "category": "tables",
- "price": 2199.99,
- "inStock": true,
- "modelNo": "TA024",
- "tags": ["Table", "Workstation", "Office", "Conference"],
- "sizes": ["S", "M", "L"],
- "colors": [
- {
- "name": "Natural",
- "value": "#D2B48C",
- "selected": true
- },
- {
- "name": "Dark",
- "value": "#654321",
- "selected": false
- },
- {
- "name": "White",
- "value": "#FFFFFF",
- "selected": false
- }
- ],
- "selectedSize": "L",
- "selectedColor": "Natural",
- "originalPrice": 2199.99,
- "rating": "4.8",
- "reviews": 67,
+ "name": "Flexi",
+ "description": "Designed to meet the needs of every user. Lightweight yet durable for durable use. Features modern design with a breathable mesh backrest and upholstered seat. Perfect for visitor seating.",
+ "image": "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp",
+ "alt": "Flexi",
+ "category": "visitors-chair",
"images": [
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg",
- "assets/images/conference_rooms.jpg"
+ "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp",
+ "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-02.webp",
+ "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-03.webp",
+ "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-04.webp"
],
"descriptionLong": [
- "This professional table solution is designed to meet the diverse needs of modern workplaces. Combining durability with versatile design, it provides the perfect foundation for productive meetings and collaborative work.",
- "The table features premium materials and construction techniques that ensure years of reliable use. The thoughtful design includes integrated cable management and optional power solutions to support modern work requirements."
+ "The Flexi visitors chair is designed to meet the needs of every user, providing exceptional comfort and functionality for diverse seating requirements. This sophisticated chair features a lightweight yet durable construction that ensures long-lasting performance while maintaining easy mobility and handling.",
+ "Featuring a modern design with a breathable mesh backrest and upholstered seat, the Flexi chair combines contemporary aesthetics with superior comfort. The breathable mesh backrest provides excellent ventilation and support, while the upholstered seat ensures exceptional comfort for visitors during extended seating periods.",
+ "Perfect for visitor seating, the Flexi chair adapts seamlessly to various professional environments and user preferences. The combination of lightweight durability, modern design, and breathable comfort features makes this chair an ideal choice for creating comfortable and welcoming spaces that accommodate the diverse needs of all visitors and guests."
],
"additionalInformation": {
- "Material": "Premium materials with durable construction",
- "Design": "Contemporary professional aesthetic",
- "Dimensions": "See size options",
- "Warranty": "3 years",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "Material": "Breathable mesh backrest, upholstered seat, aluminum base",
+ "Design": "Designed to meet the needs of every user",
+ "Durability": "Lightweight yet durable for durable use",
+ "Modern Design": "Modern design with a breathable mesh backrest",
+ "Breathable Mesh": "Breathable mesh backrest provides excellent ventilation and support",
+ "Upholstered Seat": "Upholstered seat ensures exceptional comfort for visitors",
+ "Target Use": "Perfect for visitor seating",
+ "User Needs": "Designed to meet the needs of every user",
+ "Lightweight Construction": "Lightweight yet durable construction ensures long-lasting performance",
+ "Easy Mobility": "Maintains easy mobility and handling",
+ "Contemporary Aesthetics": "Combines contemporary aesthetics with superior comfort",
+ "Ventilation": "Breathable mesh backrest provides excellent ventilation and support",
+ "Extended Comfort": "Exceptional comfort for visitors during extended seating periods",
+ "Adaptability": "Adapts seamlessly to various professional environments and user preferences",
+ "Diverse Needs": "Accommodates the diverse needs of all visitors and guests",
+ "Comfortable Spaces": "Ideal choice for creating comfortable and welcoming spaces",
+ "Professional Environments": "Perfect for various professional environments",
+ "User Preferences": "Adapts to different user preferences",
+ "Long-lasting Performance": "Lightweight yet durable construction ensures long-lasting performance",
+ "Warranty": "5 years"
},
- "reviewsCount": 67,
"galleryPairs": [
- {
- "left": "assets/images/conference_rooms.jpg",
- "right": "assets/images/conference_rooms.jpg"
- }
+ "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-05.webp",
+ "assets/images/products/categories/visitors-chair/flexi/flexi-fx-1161-01.webp"
+ ]
+ },
+ {
+ "id": 25,
+ "name": "La-filo",
+ "description": "Sleek sleigh frame in black or chrome finish. Available with or without armrest. Features polypropylene seat and back with optional upholstered seat and back pads (fabric choice available).",
+ "image": "assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg",
+ "alt": "La-filo",
+ "category": "visitors-chair",
+ "images": [
+ "assets/images/products/categories/visitors-chair/la-filo/LAFILO-SIDE-UPHOLSTERED.jpg",
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_07_600x600px.jpg",
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_14_600x600px.webp",
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_15_600x600px.webp"
],
- "dimensions": "140cm x 70cm x 75cm",
- "salesPackage": "1 unit",
- "configuration": "Standard",
- "fillingMaterial": "High-density foam",
- "finishType": "Premium finish",
- "adjustableHeadrest": "No",
- "maxLoadCapacity": "150kg",
- "originOfManufacture": "Ghana",
- "weight": "25kg",
- "seatHeight": "45cm",
- "legHeight": "10cm",
- "warrantyServiceType": "Standard warranty service",
- "coveredInWarranty": "Manufacturing defects",
- "notCoveredInWarranty": "Wear and tear not covered"
+ "descriptionLong": [
+ "The La-filo visitors chair features a sleek sleigh frame available in black or chrome finish, creating a sophisticated and modern aesthetic that enhances any professional environment. This elegant chair combines contemporary design with exceptional functionality, making it perfect for reception areas, meeting rooms, and executive spaces.",
+ "Available with or without armrest, the La-filo chair offers flexibility to meet diverse seating requirements and user preferences. The polypropylene seat and back provide durability and easy maintenance, while the optional upholstered seat and back pads allow for complete customization with fabric choice available to match your specific design requirements.",
+ "The sleek sleigh frame design of the La-filo chair creates a distinctive silhouette that adds elegance and sophistication to any space. Whether you choose the black or chrome finish, with or without armrests, and with optional upholstered pads, this chair delivers exceptional comfort and style that makes a lasting impression on visitors and guests."
+ ],
+ "additionalInformation": {
+ "Material": "Polypropylene seat and back, sleek sleigh frame",
+ "Design": "Sleek sleigh frame in black or chrome finish",
+ "Frame Options": "Sleek sleigh frame in black or chrome finish",
+ "Armrest Options": "Available with or without armrest",
+ "Seat Material": "Polypropylene seat and back",
+ "Upholstery Options": "Optional upholstered seat and back pads (fabric choice available)",
+ "Finish Options": "Black or chrome finish available",
+ "Flexibility": "Offers flexibility to meet diverse seating requirements and user preferences",
+ "Durability": "Polypropylene seat and back provide durability and easy maintenance",
+ "Customization": "Optional upholstered seat and back pads allow for complete customization",
+ "Fabric Choice": "Fabric choice available to match your specific design requirements",
+ "Sophisticated Aesthetic": "Creates a sophisticated and modern aesthetic that enhances any professional environment",
+ "Contemporary Design": "Combines contemporary design with exceptional functionality",
+ "Target Areas": "Perfect for reception areas, meeting rooms, and executive spaces",
+ "Distinctive Silhouette": "Creates a distinctive silhouette that adds elegance and sophistication",
+ "Elegance and Sophistication": "Adds elegance and sophistication to any space",
+ "Lasting Impression": "Makes a lasting impression on visitors and guests",
+ "Exceptional Comfort": "Delivers exceptional comfort and style",
+ "Professional Environment": "Enhances any professional environment",
+ "Easy Maintenance": "Polypropylene provides easy maintenance",
+ "Complete Customization": "Allows for complete customization with fabric choice",
+ "Design Requirements": "Matches your specific design requirements",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_17_600x600px.jpg",
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_20_600x600px.jpg",
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_21_600x600px.webp",
+ "assets/images/products/categories/visitors-chair/la-filo/Seating_La-Filo_Gallery_26_600x600px.jpg"
+ ]
+ },
+ {
+ "id": 26,
+ "name": "Plural",
+ "description": "Contemporary design that adds style to any workspace. Features optional armrests for extra comfort. Available in a range of color options to match your setting.",
+ "image": "assets/images/products/categories/visitors-chair/plural/plural (1).webp",
+ "alt": "Plural",
+ "category": "visitors-chair",
+ "images": [
+ "assets/images/products/categories/visitors-chair/plural/plural (1).webp",
+ "assets/images/products/categories/visitors-chair/plural/plural (7).webp",
+ "assets/images/products/categories/visitors-chair/plural/plural (8).webp",
+ "assets/images/products/categories/visitors-chair/plural/plural (9).webp"
+ ],
+ "descriptionLong": [
+ "The Plural visitors chair features a contemporary design that adds style to any workspace, creating a modern and sophisticated atmosphere that enhances professional environments. This elegant chair combines contemporary aesthetics with exceptional functionality, making it perfect for reception areas, meeting rooms, and office spaces.",
+ "Featuring optional armrests for extra comfort, the Plural chair provides flexibility to meet diverse seating requirements and user preferences. The contemporary design ensures this chair seamlessly integrates into various professional settings while maintaining its distinctive modern character and style.",
+ "Available in a range of color options to match your setting, the Plural chair offers complete customization to complement your interior design scheme and brand identity. Whether you need a chair with or without armrests, and in colors that match your specific requirements, this chair delivers exceptional comfort and contemporary style that makes a lasting impression on visitors and guests."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Contemporary design that adds style to any workspace",
+ "Contemporary Design": "Contemporary design that adds style to any workspace",
+ "Style Enhancement": "Adds style to any workspace",
+ "Optional Armrests": "Optional armrests for extra comfort",
+ "Extra Comfort": "Optional armrests for extra comfort",
+ "Range of Colors": "Available in a range of color options to match your setting",
+ "Setting Match": "Color options to match your setting",
+ "Modern Atmosphere": "Creates a modern and sophisticated atmosphere that enhances professional environments",
+ "Contemporary Aesthetics": "Combines contemporary aesthetics with exceptional functionality",
+ "Target Areas": "Perfect for reception areas, meeting rooms, and office spaces",
+ "Flexibility": "Provides flexibility to meet diverse seating requirements and user preferences",
+ "Professional Integration": "Seamlessly integrates into various professional settings",
+ "Distinctive Character": "Maintains its distinctive modern character and style",
+ "Complete Customization": "Offers complete customization to complement your interior design scheme and brand identity",
+ "Interior Design": "Complements your interior design scheme and brand identity",
+ "Brand Identity": "Matches your brand identity",
+ "Armrest Options": "Available with or without armrests",
+ "Color Matching": "Colors that match your specific requirements",
+ "Exceptional Comfort": "Delivers exceptional comfort and contemporary style",
+ "Contemporary Style": "Contemporary style that makes a lasting impression",
+ "Lasting Impression": "Makes a lasting impression on visitors and guests",
+ "Professional Environments": "Enhances professional environments",
+ "Modern Character": "Maintains distinctive modern character and style",
+ "Workspace Enhancement": "Adds style to any workspace",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/visitors-chair/plural/plural (10).webp",
+ "assets/images/products/categories/visitors-chair/plural/plural (21).webp"
+ ]
+ },
+ {
+ "id": 27,
+ "name": "Chico",
+ "description": "A stylish blend of comfort and practicality. Features cozy molded foam shell with soft upholstery and sturdy 4-legged base for everyday use. Perfect for seating, lobbies, receptions, and meeting areas.",
+ "image": "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg",
+ "alt": "Chico",
+ "category": "visitors-chair",
+ "images": [
+ "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-01.jpg",
+ "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-01.jpg",
+ "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Brown-04.jpg",
+ "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-03.jpg"
+ ],
+ "descriptionLong": [
+ "The Chico visitors chair represents a stylish blend of comfort and practicality, designed to meet the diverse needs of modern professional environments. This sophisticated chair features a cozy molded foam shell with soft upholstery that provides exceptional comfort and support for visitors and guests.",
+ "Built with a sturdy 4-legged base for everyday use, the Chico chair ensures reliable stability and durability in high-traffic areas. The combination of the cozy molded foam shell and soft upholstery creates a welcoming seating experience that makes visitors feel comfortable and valued during their stay.",
+ "Perfect for seating, lobbies, receptions, and meeting areas, the Chico chair adapts seamlessly to various professional settings. The stylish design aesthetic combined with practical functionality makes this chair an ideal choice for creating inviting and comfortable spaces that reflect your organization's commitment to visitor comfort and professional presentation."
+ ],
+ "additionalInformation": {
+ "Material": "Cozy molded foam shell with soft upholstery, sturdy 4-legged base",
+ "Design": "A stylish blend of comfort and practicality",
+ "Comfort Features": "Cozy molded foam shell with soft upholstery",
+ "Base Design": "Sturdy 4-legged base for everyday use",
+ "Target Areas": "Perfect for seating, lobbies, receptions, and meeting areas",
+ "Stylish Blend": "A stylish blend of comfort and practicality",
+ "Molded Foam Shell": "Cozy molded foam shell with soft upholstery",
+ "Soft Upholstery": "Soft upholstery provides exceptional comfort and support",
+ "Sturdy Base": "Sturdy 4-legged base ensures reliable stability and durability",
+ "Everyday Use": "Built for everyday use in high-traffic areas",
+ "Professional Environments": "Designed to meet the diverse needs of modern professional environments",
+ "Visitor Comfort": "Makes visitors feel comfortable and valued during their stay",
+ "Welcoming Experience": "Creates a welcoming seating experience",
+ "Adaptability": "Adapts seamlessly to various professional settings",
+ "Stylish Design": "Stylish design aesthetic combined with practical functionality",
+ "Inviting Spaces": "Ideal choice for creating inviting and comfortable spaces",
+ "Professional Presentation": "Reflects organization's commitment to visitor comfort and professional presentation",
+ "High-traffic Areas": "Reliable stability and durability in high-traffic areas",
+ "Comfort and Support": "Provides exceptional comfort and support for visitors and guests",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-04.jpg",
+ "assets/images/products/categories/visitors-chair/chico/Chico-4-Legged-Green-05.jpg"
+ ]
+ },
+ {
+ "id": 28,
+ "name": "Cappa",
+ "description": "Lightweight yet durable visitors chair for everyday use. Perfect for visitor areas, receptions, and meeting rooms. Features sleek, modern design with a comfortable seat.",
+ "image": "assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp",
+ "alt": "Cappa",
+ "category": "visitors-chair",
+ "images": [
+ "assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp",
+ "assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp",
+ "assets/images/products/categories/visitors-chair/cappa/CAPPA_BASE_SLED_WHITE.webp"
+ ],
+ "descriptionLong": [
+ "The Cappa visitors chair combines lightweight construction with exceptional durability, making it perfect for everyday use in busy professional environments. This sophisticated chair features a sleek, modern design with a comfortable seat that ensures visitors feel welcome and comfortable during their stay.",
+ "Perfect for visitor areas, receptions, and meeting rooms, the Cappa chair adapts seamlessly to various professional settings. The lightweight yet durable construction ensures easy mobility and long-lasting performance, while the modern design aesthetic enhances any workspace environment.",
+ "The comfortable seat design of the Cappa chair provides exceptional support and comfort for visitors of all ages and sizes. Whether used in formal reception areas, casual meeting rooms, or high-traffic visitor zones, this chair maintains its professional appearance while delivering superior comfort and functionality."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Lightweight yet durable for everyday use",
+ "Durability": "Lightweight yet durable for everyday use",
+ "Target Areas": "Perfect for visitor areas, receptions, and meeting rooms",
+ "Design Aesthetic": "Sleek, modern design with a comfortable seat",
+ "Everyday Use": "Perfect for everyday use in busy professional environments",
+ "Lightweight Construction": "Lightweight construction with exceptional durability",
+ "Professional Environments": "Perfect for everyday use in busy professional environments",
+ "Comfortable Seat": "Sleek, modern design with a comfortable seat",
+ "Visitor Comfort": "Ensures visitors feel welcome and comfortable during their stay",
+ "Adaptability": "Adapts seamlessly to various professional settings",
+ "Easy Mobility": "Lightweight yet durable construction ensures easy mobility",
+ "Long-lasting Performance": "Long-lasting performance with modern design aesthetic",
+ "Workspace Enhancement": "Modern design aesthetic enhances any workspace environment",
+ "Support and Comfort": "Provides exceptional support and comfort for visitors of all ages and sizes",
+ "Professional Appearance": "Maintains professional appearance while delivering superior comfort and functionality",
+ "Versatile Use": "Whether used in formal reception areas, casual meeting rooms, or high-traffic visitor zones",
+ "Superior Functionality": "Delivers superior comfort and functionality",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/visitors-chair/cappa/CAPPA_FAMILY.webp",
+ "assets/images/products/categories/visitors-chair/cappa/CAPPA_4-LEGGED.webp"
+ ]
+ },
+ {
+ "id": 29,
+ "name": "Breeze",
+ "description": "Minimal and elegant sofa with a balance of straight lines and soft curves. Strong iron frame for lasting durability with a modern touch. Available as a single or triple seater. Ideal for offices, lounges, and reception areas.",
+ "image": "assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg",
+ "alt": "Breeze",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/breeze/BREEZE-2-1.jpg",
+ "assets/images/products/categories/soft-seating/breeze/BREEZE-3-1.jpg",
+ "assets/images/products/categories/soft-seating/breeze/BREEZE-4-1.jpg",
+ "assets/images/products/categories/soft-seating/breeze/BREEZE-9.jpg"
+ ],
+ "descriptionLong": [
+ "Breeze is a minimal and elegant sofa balancing straight lines with soft curves for a refined look.",
+ "A strong iron frame ensures lasting durability while adding a modern touch to any space.",
+ "Available as a single or triple seater, Breeze is ideal for offices, lounges, and reception areas."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, strong iron frame",
+ "Design": "Minimal and elegant with balanced lines and curves",
+ "Variants": "Single or triple seater",
+ "Use Cases": "Ideal for offices, lounges, and reception areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/breeze/Breeze-Grey-01.jpg",
+ "assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02.jpg",
+ "assets/images/products/categories/soft-seating/breeze/Breeze-Grey-02-2-768x768.jpg",
+ "assets/images/products/categories/soft-seating/breeze/Breeze.jpg"
+ ]
+ },
+ {
+ "id": 30,
+ "name": "Bow Lounge",
+ "description": "Contemporary lounge seating with a welcoming, curved design. Perfect for lounges, reception areas, and collaborative corners. Available in different colors.",
+ "image": "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg",
+ "alt": "Bow Lounge",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg",
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_039.jpg",
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_040.jpg",
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_042.jpg"
+ ],
+ "descriptionLong": [
+ "Bow Lounge delivers contemporary lounge seating with a welcoming, curved design that invites relaxation.",
+ "It’s perfect for lounges, reception areas, and collaborative corners where comfort and style matter.",
+ "Offered in different colors to complement a variety of settings and palettes."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, sturdy frame",
+ "Design": "Contemporary with welcoming, curved form",
+ "Target Areas": "Lounges, reception areas, collaborative corners",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_054.jpg",
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_001.jpg",
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_055.jpg",
+ "assets/images/products/categories/soft-seating/bow-lounge/BOW LOUNGE_064.jpg"
+ ]
+ },
+ {
+ "id": 31,
+ "name": "Pausa",
+ "description": "Calm and inviting sofa design that creates a relaxing atmosphere. Versatile for offices, lounges, and reception areas. Available in single, two seater, or three seater options.",
+ "image": "assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg",
+ "alt": "Pausa",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_013.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_014.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_023.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_049.jpg"
+ ],
+ "descriptionLong": [
+ "Pausa offers a calm and inviting sofa design that sets a relaxing tone in shared spaces. A versatile choice for offices, lounges, and reception areas, balancing comfort and clean lines.",
+ "Available as a single, two seater, or three seater to suit different needs."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, durable frame",
+ "Design": "Calm and inviting",
+ "Variants": "Single, two seater, three seater",
+ "Use Cases": "Offices, lounges, reception areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_050.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_052.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_053.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_054.jpg",
+ "assets/images/products/categories/soft-seating/pausa/PAUSA_059.jpg"
+ ]
+ },
+ {
+ "id": 32,
+ "name": "Amivera",
+ "description": "Upholstered for comfort with clean, structured lines. Available in a variety of colors to suit any interior. Perfect for lounges, waiting areas, offices, or collaborative spaces. Modern and minimalist sofa design for versatile spaces.",
+ "image": "assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg",
+ "alt": "Amivera",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_001.jpg",
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_009.jpg",
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_011.jpg",
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_013.jpg"
+ ],
+ "descriptionLong": [
+ "Amivera combines comfortable upholstery with clean, structured lines to elevate modern interiors. The form is crisp yet welcoming, bringing quiet confidence to shared spaces.",
+ "Offered in a variety of colors, it fits lounges, waiting areas, offices, and collaborative spaces. The minimalist language adapts easily, keeping spaces coherent as needs change."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, structured frame",
+ "Design": "Upholstered with clean, structured lines",
+ "Use Cases": "Lounges, waiting areas, offices, collaborative spaces",
+ "Style": "Modern and minimalist",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_019.jpg",
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_028.jpg",
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_099.jpg",
+ "assets/images/products/categories/soft-seating/amivera/AMIVERA_103.jpg",
+ "assets/images/products/categories/soft-seating/amivera/Amivera_gallery_sofas-tables-office.jpg"
+ ]
+ },
+ {
+ "id": 33,
+ "name": "Cyl",
+ "description": "Encourages gathering and interaction in shared spaces. Available in different colors for creative environments. Lightweight pouf that adds warmth and flexibility to any setting.",
+ "image": "assets/images/products/categories/soft-seating/cyl/CYL_004.jpg",
+ "alt": "Cyl",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/cyl/CYL_004.jpg",
+ "assets/images/products/categories/soft-seating/cyl/CYL_019.jpg",
+ "assets/images/products/categories/soft-seating/cyl/CYL_028.jpg",
+ "assets/images/products/categories/soft-seating/cyl/CYL_029.jpg"
+ ],
+ "descriptionLong": [
+ "Cyl encourages gathering and interaction in shared spaces as a lightweight, versatile pouf. Available in different colors to suit creative environments and add warmth.",
+ "Its lightweight build adds flexibility and warmth to any setting, from lounges to collaboration zones."
+ ],
+ "additionalInformation": {
+ "Material": "Durable upholstery, lightweight core",
+ "Design": "Lightweight pouf for shared spaces",
+ "Use Case": "Encourages gathering and interaction",
+ "Flexibility": "Adds warmth and flexibility to any setting",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/cyl/CYL_030.jpg",
+ "assets/images/products/categories/soft-seating/cyl/CYL_033.jpg"
+ ]
+ },
+ {
+ "id": 34,
+ "name": "Hopscotch",
+ "description": "Playful upholstered ottoman designed for casual and collaborative spaces. Lightweight and easy to move—ideal for modern lounges and reception areas.",
+ "image": "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg",
+ "alt": "Hopscotch",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-2-1.jpg",
+ "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-3-1.jpg",
+ "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-4-1.jpg",
+ "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-5.jpg"
+ ],
+ "descriptionLong": [
+ "Hopscotch is a playful upholstered ottoman for casual and collaborative spaces. Lightweight and easy to move, it adapts quickly to modern lounges and reception areas.",
+ "A simple, versatile piece that adds comfort and personality to shared spaces."
+ ],
+ "additionalInformation": {
+ "Material": "Upholstered body, lightweight structure",
+ "Design": "Playful ottoman for casual and collaborative spaces",
+ "Mobility": "Lightweight and easy to move",
+ "Use Cases": "Modern lounges and reception areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/hopscotch/HOPSCOTCH-SCENE-1.jpg",
+ "assets/images/products/categories/soft-seating/hopscotch/HopScotch.jpg"
+ ]
+ },
+ {
+ "id": 35,
+ "name": "Marina",
+ "description": "Contemporary lounge seating with a refined and formal touch. Soft, comfortable seat framed by a gently angled backrest. Wide choice of colors and finishes. Available in single or two seater option.",
+ "image": "assets/images/products/categories/soft-seating/marina/MARINA_001.jpg",
+ "alt": "Marina",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/marina/MARINA_001.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_007.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_009.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_011.jpg"
+ ],
+ "descriptionLong": [
+ "Marina offers contemporary lounge seating with a refined, formal touch. A soft, comfortable seat is framed by a gently angled backrest for support.",
+ "Choose from a wide range of colors and finishes; available as a single or two seater."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, supportive frame",
+ "Design": "Refined and formal lounge seating",
+ "Comfort": "Soft seat with gently angled backrest",
+ "Options": "Single or two seater",
+ "Colors & Finishes": "Wide choice to suit interiors",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/marina/MARINA_013.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_014.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_015.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_016.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_017.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_036.jpg",
+ "assets/images/products/categories/soft-seating/marina/MARINA_048.jpg",
+ "assets/images/products/categories/soft-seating/marina/230130157517-2.jpg"
+ ]
+ },
+ {
+ "id": 36,
+ "name": "Meet Me",
+ "description": "Modular seating system designed for flexibility and collaboration. Can be arranged in different layouts to fit any space. Ideal for lounges and reception areas.",
+ "image": "assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg",
+ "alt": "Meet Me",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg",
+ "assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg",
+ "assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me02-768x375.jpg"
+ ],
+ "descriptionLong": [
+ "Meet Me is a modular seating system designed for flexible layouts and collaboration. It can be arranged in different configurations to fit any space and purpose.",
+ "Ideal for lounges and reception areas that need adaptable, comfortable seating."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, modular components",
+ "Design": "Modular for flexibility and collaboration",
+ "Layouts": "Arrange in different configurations",
+ "Use Cases": "Lounges and reception areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/meet-me/400x400_Thumbnail_Seating_Lounge-Seating_Meet-Me.jpg",
+ "assets/images/products/categories/soft-seating/meet-me/1024x500_Gallery_Reception-Soft-Seating_Meet-Me01-768x375.jpg"
+ ]
+ },
+ {
+ "id": 37,
+ "name": "Envy",
+ "description": "Premium soft seating with Envy design. Perfect for luxury lounge areas and high-end spaces with exclusive comfort.",
+ "image": "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg",
+ "alt": "Envy",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-angled2-300x300.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-back.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-2seater-green-front-sml-600x600.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-angled-300x300.jpg"
+ ],
+ "descriptionLong": [
+ "Indulge in exclusive luxury with our Envy soft seating. This premium piece combines luxury design with exceptional comfort, perfect for high-end lounge areas and exclusive spaces.",
+ "The Envy features premium materials, luxury design, and exclusive styling. The sophisticated construction and refined finish create an impressive atmosphere while providing exceptional comfort for luxury relaxation and exclusive meetings."
+ ],
+ "additionalInformation": {
+ "Material": "Premium leather, aluminum base",
+ "Design": "Luxury exclusive aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-back-300x300.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-300x300.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-3seater-migraton-indigo-front-ml.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-600x600.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-angled-back-300x300.jpg",
+ "assets/images/products/categories/soft-seating/envy/Envy-RANGE-lounge-chair-pink-front-sml-300x300.jpg"
+ ]
+ },
+ {
+ "id": 38,
+ "name": "Bow Chair",
+ "description": "Elegant chair with a distinctive curved backrest for extra comfort. Available in wooden or swivel base. Versatile for lounges, offices, and waiting areas. Offered in a wide range of colors.",
+ "image": "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg",
+ "alt": "Bow Chair",
+ "category": "soft-seating",
+ "images": [
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_001.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_002.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_011.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_015.jpg"
+ ],
+ "descriptionLong": [
+ "Bow Chair is an elegant chair with a distinctive curved backrest for extra comfort. Choose a wooden or swivel base to suit different settings and uses.",
+ "Versatile for lounges, offices, and waiting areas, and offered in a wide range of colors."
+ ],
+ "additionalInformation": {
+ "Material": "Premium upholstery, wooden or swivel base",
+ "Design": "Elegant with distinctive curved backrest",
+ "Base Options": "Wooden or swivel base",
+ "Use Cases": "Lounges, offices, waiting areas",
+ "Color Range": "Offered in a wide range of colors",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_035.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_036.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_043.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_050.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_056.jpg",
+ "assets/images/products/categories/soft-seating/bow-chair/BOW CHAIR_057.jpg"
+ ]
+ },
+ {
+ "id": 39,
+ "name": "Smile",
+ "description": "Solid beech wood frame for durability. Crafted with an oak board seat. Available upholstered seat for extra comfort. Strong yet lightweight build. Spindle backrest with timeless design.",
+ "image": "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp",
+ "alt": "Smile",
+ "category": "barstools",
+ "images": [
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp",
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_3.webp",
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_4.webp",
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_5.webp"
+ ],
+ "descriptionLong": [
+ "The Smile barstool features a solid beech wood frame for exceptional durability, ensuring long-lasting performance and reliable stability in any environment. Crafted with an oak board seat, this barstool combines natural wood beauty with superior craftsmanship, creating a sophisticated and timeless aesthetic that enhances any space.",
+ "Available with an upholstered seat for extra comfort, the Smile barstool provides flexibility to meet diverse seating requirements and user preferences. The strong yet lightweight build ensures easy mobility and handling while maintaining exceptional durability, making this barstool perfect for both stationary and dynamic seating arrangements.",
+ "Featuring a spindle backrest with timeless design, the Smile barstool creates a classic and elegant silhouette that never goes out of style. The combination of solid beech wood construction, oak board seating, optional upholstery, and timeless spindle design makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that stand the test of time."
+ ],
+ "additionalInformation": {
+ "Material": "Solid beech wood frame, oak board seat",
+ "Design": "Solid beech wood frame for durability",
+ "Beech Wood Frame": "Solid beech wood frame for durability",
+ "Durability": "Solid beech wood frame for exceptional durability, ensuring long-lasting performance and reliable stability",
+ "Long-lasting Performance": "Long-lasting performance and reliable stability in any environment",
+ "Reliable Stability": "Reliable stability in any environment",
+ "Oak Board Seat": "Crafted with an oak board seat",
+ "Natural Wood Beauty": "Combines natural wood beauty with superior craftsmanship",
+ "Superior Craftsmanship": "Natural wood beauty with superior craftsmanship",
+ "Sophisticated Aesthetic": "Creates a sophisticated and timeless aesthetic that enhances any space",
+ "Timeless Aesthetic": "Timeless aesthetic that enhances any space",
+ "Upholstered Seat": "Available upholstered seat for extra comfort",
+ "Extra Comfort": "Available upholstered seat for extra comfort",
+ "Seating Flexibility": "Provides flexibility to meet diverse seating requirements and user preferences",
+ "User Preferences": "Meets diverse seating requirements and user preferences",
+ "Strong Build": "Strong yet lightweight build",
+ "Lightweight Build": "Strong yet lightweight build",
+ "Easy Mobility": "Ensures easy mobility and handling while maintaining exceptional durability",
+ "Easy Handling": "Easy mobility and handling",
+ "Exceptional Durability": "Maintaining exceptional durability",
+ "Stationary Seating": "Perfect for stationary seating arrangements",
+ "Dynamic Seating": "Perfect for dynamic seating arrangements",
+ "Spindle Backrest": "Spindle backrest with timeless design",
+ "Timeless Design": "Spindle backrest with timeless design",
+ "Classic Silhouette": "Creates a classic and elegant silhouette that never goes out of style",
+ "Elegant Silhouette": "Classic and elegant silhouette",
+ "Never Goes Out of Style": "Never goes out of style",
+ "Beech Wood Construction": "Solid beech wood construction",
+ "Oak Board Seating": "Oak board seating",
+ "Optional Upholstery": "Optional upholstery",
+ "Timeless Spindle Design": "Timeless spindle design",
+ "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
+ "Stand the Test of Time": "Seating arrangements that stand the test of time",
+ "Natural Materials": "Combines natural wood beauty with superior craftsmanship",
+ "Wood Construction": "Solid beech wood construction with oak board seating",
+ "Craftsmanship Quality": "Superior craftsmanship with natural wood beauty",
+ "Environment Versatility": "Reliable stability in any environment",
+ "Mobility and Durability": "Easy mobility and handling while maintaining exceptional durability",
+ "Comfort Options": "Available upholstered seat for extra comfort",
+ "Design Longevity": "Timeless design that never goes out of style",
+ "Space Enhancement": "Enhances any space",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_1.webp",
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0327_barstool_1.webp",
+ "assets/images/products/categories/barstools/smile/smile_andreu_world_BQ0328_barstool_2.webp"
+ ]
+ },
+ {
+ "id": 40,
+ "name": "Faro",
+ "description": "Great for indoor and outdoor use. Stackable for space saving. Available in different colors. Light and easy to move.",
+ "image": "assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg",
+ "alt": "Faro",
+ "category": "barstools",
+ "images": [
+ "assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg",
+ "assets/images/products/categories/barstools/faro/1024x500_Gallery_Faro.webp",
+ "assets/images/products/categories/barstools/faro/Cafe_Faro-Stool_Gallery_03_600x600px.jpg",
+ "assets/images/products/categories/barstools/faro/Faro-Barstool-Anthracite-Setting.jpg"
+ ],
+ "descriptionLong": [
+ "The Faro barstool is great for both indoor and outdoor use, providing exceptional versatility for various environments and weather conditions. This sophisticated barstool features a stackable design for space saving, making it perfect for areas where efficient storage and space management are essential.",
+ "Available in different colors, the Faro barstool offers flexibility to match any interior or exterior design scheme. The light and easy to move construction ensures convenient handling and repositioning, making this barstool ideal for dynamic spaces that require frequent layout changes.",
+ "The combination of indoor and outdoor versatility, stackable functionality, and easy mobility makes the Faro barstool an excellent choice for cafes, restaurants, patios, and any space where flexibility and convenience are paramount. Whether used indoors for comfortable seating or outdoors for weather-resistant functionality, this barstool delivers exceptional performance and style."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Great for indoor and outdoor use",
+ "Indoor Use": "Great for indoor use",
+ "Outdoor Use": "Great for outdoor use",
+ "Versatility": "Great for both indoor and outdoor use, providing exceptional versatility for various environments and weather conditions",
+ "Stackable Design": "Stackable for space saving",
+ "Space Saving": "Stackable design for space saving, perfect for areas where efficient storage and space management are essential",
+ "Different Colors": "Available in different colors",
+ "Design Flexibility": "Offers flexibility to match any interior or exterior design scheme",
+ "Light Construction": "Light and easy to move",
+ "Easy to Move": "Light and easy to move construction ensures convenient handling and repositioning",
+ "Convenient Handling": "Ensures convenient handling and repositioning",
+ "Dynamic Spaces": "Ideal for dynamic spaces that require frequent layout changes",
+ "Layout Changes": "Perfect for spaces that require frequent layout changes",
+ "Indoor Versatility": "Great for indoor use with comfortable seating",
+ "Outdoor Versatility": "Excellent for outdoor use with weather-resistant functionality",
+ "Stackable Functionality": "Stackable functionality for efficient storage",
+ "Easy Mobility": "Easy mobility for convenient repositioning",
+ "Flexibility and Convenience": "Perfect for spaces where flexibility and convenience are paramount",
+ "Cafes": "Excellent choice for cafes",
+ "Restaurants": "Ideal for restaurants",
+ "Patios": "Perfect for patios",
+ "Weather-resistant": "Weather-resistant functionality for outdoor use",
+ "Exceptional Performance": "Delivers exceptional performance and style",
+ "Style and Performance": "Delivers exceptional performance and style",
+ "Environment Versatility": "Versatile for various environments and weather conditions",
+ "Storage Management": "Efficient storage and space management",
+ "Repositioning": "Convenient handling and repositioning",
+ "Interior Design": "Matches any interior design scheme",
+ "Exterior Design": "Matches any exterior design scheme",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/barstools/faro/Faro-Barstool-Moss-02a.webp",
+ "assets/images/products/categories/barstools/faro/1024x500_Gallery_Cafe_Faro-Barstool06.jpg"
+ ]
+ },
+ {
+ "id": 41,
+ "name": "Abril",
+ "description": "Comfortable contoured seat for long sitting. Modern and stylish seating for casual spaces. Solid build designed for everyday use. Available in different color finishes. Ideal for kitchens, bars, and high tables.",
+ "image": "assets/images/products/categories/barstools/abril/ABRIL_029.jpg",
+ "alt": "Abril",
+ "category": "barstools",
+ "images": [
+ "assets/images/products/categories/barstools/abril/ABRIL_029.jpg",
+ "assets/images/products/categories/barstools/abril/ABRIL_072.jpg",
+ "assets/images/products/categories/barstools/abril/ABRIL_074.jpg",
+ "assets/images/products/categories/barstools/abril/ABRIL_076.jpg"
+ ],
+ "descriptionLong": [
+ "The Abril barstool features a comfortable contoured seat designed for long sitting periods, ensuring exceptional comfort and support during extended use. This sophisticated barstool combines modern and stylish seating perfect for casual spaces, creating an inviting atmosphere that enhances any environment.",
+ "Built with a solid build designed for everyday use, the Abril barstool ensures reliable durability and long-lasting performance in high-traffic areas. Available in different color finishes, this barstool offers versatility to match any interior design scheme and personal preferences, making it a perfect choice for diverse settings.",
+ "Ideal for kitchens, bars, and high tables, the Abril barstool adapts seamlessly to various casual dining and entertainment spaces. The combination of comfortable contoured seating, modern styling, and solid construction makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that enhance the overall dining and social experience."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, wooden base",
+ "Design": "Comfortable contoured seat for long sitting",
+ "Contoured Seat": "Comfortable contoured seat for long sitting",
+ "Long Sitting Comfort": "Designed for long sitting periods, ensuring exceptional comfort and support during extended use",
+ "Modern Styling": "Modern and stylish seating for casual spaces",
+ "Stylish Seating": "Modern and stylish seating for casual spaces",
+ "Casual Spaces": "Perfect for casual spaces, creating an inviting atmosphere",
+ "Solid Build": "Solid build designed for everyday use",
+ "Everyday Use": "Designed for everyday use, ensures reliable durability and long-lasting performance",
+ "High-traffic Areas": "Reliable durability and long-lasting performance in high-traffic areas",
+ "Color Finishes": "Available in different color finishes",
+ "Different Colors": "Available in different color finishes",
+ "Versatility": "Offers versatility to match any interior design scheme and personal preferences",
+ "Interior Design": "Matches any interior design scheme and personal preferences",
+ "Diverse Settings": "Perfect choice for diverse settings",
+ "Target Areas": "Ideal for kitchens, bars, and high tables",
+ "Kitchens": "Perfect for kitchens",
+ "Bars": "Ideal for bars",
+ "High Tables": "Excellent for high tables",
+ "Casual Dining": "Adapts seamlessly to various casual dining and entertainment spaces",
+ "Entertainment Spaces": "Perfect for entertainment spaces",
+ "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
+ "Dining Experience": "Enhances the overall dining and social experience",
+ "Social Experience": "Enhances the overall social experience",
+ "Comfort and Support": "Ensures exceptional comfort and support during extended use",
+ "Extended Use": "Perfect for extended use periods",
+ "Inviting Atmosphere": "Creates an inviting atmosphere that enhances any environment",
+ "Environment Enhancement": "Enhances any environment",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/barstools/abril/ABRIL_077.jpg",
+ "assets/images/products/categories/barstools/abril/ABRIL_102.jpg",
+ "assets/images/products/categories/barstools/abril/ABRIL_112.jpg"
+ ]
+ },
+ {
+ "id": 42,
+ "name": "Kalea",
+ "description": "Modern design with a refined look. Features optional seat pad for extra comfort. Polypropylene shell with strong 4-legged frame in chrome or black finish.",
+ "image": "assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg",
+ "alt": "Kalea",
+ "category": "barstools",
+ "images": [
+ "assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg",
+ "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_09_600x600px.webp",
+ "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_11_600x600px.jpg",
+ "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_13_600x600px.webp"
+ ],
+ "descriptionLong": [
+ "The Kalea barstool features a modern design with a refined look that creates a sophisticated and contemporary aesthetic perfect for any professional or casual environment. This elegant barstool combines contemporary styling with exceptional functionality, making it an ideal choice for spaces that demand both modern appeal and practical comfort.",
+ "Featuring an optional seat pad for extra comfort, the Kalea barstool provides flexibility to meet diverse seating requirements and user preferences. The polypropylene shell ensures durability and easy maintenance, while the optional seat pad adds an extra layer of comfort for users who prefer enhanced seating support during extended use.",
+ "Built with a strong 4-legged frame available in chrome or black finish, the Kalea barstool ensures reliable stability and long-lasting performance. The combination of modern refined design, optional comfort features, and durable polypropylene construction makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that enhance any space."
+ ],
+ "additionalInformation": {
+ "Material": "Polypropylene shell, strong 4-legged frame",
+ "Design": "Modern design with a refined look",
+ "Modern Design": "Modern design with a refined look",
+ "Refined Look": "Modern design with a refined look",
+ "Sophisticated Aesthetic": "Creates a sophisticated and contemporary aesthetic perfect for any professional or casual environment",
+ "Contemporary Aesthetic": "Contemporary aesthetic perfect for any professional or casual environment",
+ "Contemporary Styling": "Combines contemporary styling with exceptional functionality",
+ "Modern Appeal": "Ideal choice for spaces that demand both modern appeal and practical comfort",
+ "Practical Comfort": "Demands both modern appeal and practical comfort",
+ "Optional Seat Pad": "Optional seat pad for extra comfort",
+ "Extra Comfort": "Optional seat pad for extra comfort",
+ "Seating Flexibility": "Provides flexibility to meet diverse seating requirements and user preferences",
+ "User Preferences": "Meets diverse seating requirements and user preferences",
+ "Polypropylene Shell": "Polypropylene shell ensures durability and easy maintenance",
+ "Durability": "Polypropylene shell ensures durability and easy maintenance",
+ "Easy Maintenance": "Polypropylene shell ensures easy maintenance",
+ "Enhanced Seating": "Optional seat pad adds an extra layer of comfort for users who prefer enhanced seating support",
+ "Extended Use": "Enhanced seating support during extended use",
+ "Strong Frame": "Strong 4-legged frame",
+ "4-legged Frame": "Strong 4-legged frame",
+ "Chrome Finish": "Available in chrome finish",
+ "Black Finish": "Available in black finish",
+ "Finish Options": "Available in chrome or black finish",
+ "Reliable Stability": "Ensures reliable stability and long-lasting performance",
+ "Long-lasting Performance": "Long-lasting performance",
+ "Modern Refined Design": "Combination of modern refined design, optional comfort features, and durable polypropylene construction",
+ "Optional Comfort": "Optional comfort features",
+ "Durable Construction": "Durable polypropylene construction",
+ "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
+ "Space Enhancement": "Enhances any space",
+ "Professional Environment": "Perfect for any professional environment",
+ "Casual Environment": "Perfect for any casual environment",
+ "Environment Versatility": "Perfect for any professional or casual environment",
+ "Comfort Features": "Optional comfort features for enhanced seating",
+ "Seating Support": "Enhanced seating support for extended use",
+ "Frame Stability": "Strong 4-legged frame ensures reliable stability",
+ "Construction Quality": "Durable polypropylene construction",
+ "Maintenance Ease": "Easy maintenance with polypropylene shell",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/barstools/kalea/Seating_Kalea_Gallery_20_600x600px.webp",
+ "assets/images/products/categories/barstools/kalea/Kalea-Barstool-Chrome_Brick.jpg"
+ ]
+ },
+ {
+ "id": 43,
+ "name": "Glove",
+ "description": "Simple and elegant design. Features comfortable curved seat and strong and durable frame.",
+ "image": "assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp",
+ "alt": "Glove",
+ "category": "barstools",
+ "images": [
+ "assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp",
+ "assets/images/products/categories/barstools/glove/GLOVE_HIGH_BLACK_01.webp",
+ "assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_01.webp",
+ "assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_01.webp"
+ ],
+ "descriptionLong": [
+ "The Glove barstool features a simple and elegant design that creates a sophisticated and timeless aesthetic perfect for any professional or casual environment. This refined barstool combines clean lines with exceptional functionality, making it an ideal choice for spaces that demand both style and practicality.",
+ "Featuring a comfortable curved seat, the Glove barstool provides exceptional comfort and ergonomic support for users of all sizes. The curved seat design ensures proper spinal alignment and reduces fatigue during extended seating periods, while the simple and elegant design maintains a professional appearance that enhances any space.",
+ "Built with a strong and durable frame, the Glove barstool ensures reliable stability and long-lasting performance in high-traffic areas. The combination of simple elegance, comfortable curved seating, and durable construction makes this barstool an excellent choice for creating comfortable and stylish seating arrangements that stand the test of time."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Simple and elegant design",
+ "Simple Design": "Simple and elegant design",
+ "Elegant Design": "Simple and elegant design",
+ "Sophisticated Aesthetic": "Creates a sophisticated and timeless aesthetic perfect for any professional or casual environment",
+ "Timeless Aesthetic": "Timeless aesthetic perfect for any professional or casual environment",
+ "Clean Lines": "Combines clean lines with exceptional functionality",
+ "Exceptional Functionality": "Combines clean lines with exceptional functionality",
+ "Style and Practicality": "Ideal choice for spaces that demand both style and practicality",
+ "Comfortable Seat": "Comfortable curved seat",
+ "Curved Seat": "Comfortable curved seat",
+ "Ergonomic Support": "Provides exceptional comfort and ergonomic support for users of all sizes",
+ "Spinal Alignment": "Curved seat design ensures proper spinal alignment",
+ "Fatigue Reduction": "Reduces fatigue during extended seating periods",
+ "Professional Appearance": "Simple and elegant design maintains a professional appearance that enhances any space",
+ "Space Enhancement": "Enhances any space",
+ "Strong Frame": "Strong and durable frame",
+ "Durable Frame": "Strong and durable frame",
+ "Reliable Stability": "Ensures reliable stability and long-lasting performance in high-traffic areas",
+ "Long-lasting Performance": "Long-lasting performance in high-traffic areas",
+ "High-traffic Areas": "Reliable stability and long-lasting performance in high-traffic areas",
+ "Simple Elegance": "Combination of simple elegance, comfortable curved seating, and durable construction",
+ "Comfortable Seating": "Comfortable curved seating",
+ "Durable Construction": "Durable construction",
+ "Seating Arrangements": "Excellent choice for creating comfortable and stylish seating arrangements",
+ "Stand the Test of Time": "Seating arrangements that stand the test of time",
+ "Extended Seating": "Perfect for extended seating periods",
+ "User Comfort": "Exceptional comfort and ergonomic support for users of all sizes",
+ "Professional Environment": "Perfect for any professional environment",
+ "Casual Environment": "Perfect for any casual environment",
+ "Environment Versatility": "Perfect for any professional or casual environment",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/barstools/glove/GLOVE_HIGH_WHITE_BEECH_02.webp",
+ "assets/images/products/categories/barstools/glove/GLOVE_4-LEGGED_HIGH.webp"
+ ]
+ },
+ {
+ "id": 44,
+ "name": "F25",
+ "description": "Elegant, minimalist workstation for modern offices. Combines style and functionality for everyday work. Ideal for contemporary offices and collaborative areas.",
+ "image": "assets/images/products/categories/work-station/f25/F25_DESK_01.webp",
+ "alt": "F25",
+ "category": "work-station",
+ "images": [
+ "assets/images/products/categories/work-station/f25/F25_DESK_01.webp",
+ "assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp",
+ "assets/images/products/categories/work-station/f25/F25_DESK_BENCH_02.webp",
+ "assets/images/products/categories/work-station/f25/F25_DESK_01.webp"
+ ],
+ "descriptionLong": [
+ "Elegant, minimalist workstation for modern offices. Balances style and everyday functionality.",
+ "Ideal for contemporary offices and collaborative areas. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Premium laminate, steel frame",
+ "Design": "Elegant, minimalist; modern office fit",
+ "Use": "Everyday work; collaborative areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/work-station/f25/F25_DESK_01.webp",
+ "assets/images/products/categories/work-station/f25/F25_DESK_BENCH_01.webp"
+ ]
+ },
+ {
+ "id": 45,
+ "name": "Evolution",
+ "description": "Modern, minimalist design for open offices. Supports collaborative and focused work. Cable management solutions keep the workspace neat. Available as single and cluster workstations.",
+ "image": "assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg",
+ "alt": "Evolution",
+ "category": "work-station",
+ "images": [
+ "assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg",
+ "assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg",
+ "assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg",
+ "assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg"
+ ],
+ "descriptionLong": [
+ "Modern, minimalist workstation system for open offices. Designed to support both collaborative and focused work. Integrated cable management for a clean workspace.",
+ "Available in single and cluster configurations. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Premium laminate, steel frame",
+ "Design": "Modern minimalist; single or cluster",
+ "Cable Management": "Integrated solutions for neat routing",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/work-station/evolution/Evo-dual-desk001.jpg",
+ "assets/images/products/categories/work-station/evolution/evolution-1200-meeting-white-300x300.jpg",
+ "assets/images/products/categories/work-station/evolution/EVOLUTION-1500-DUAL-BENCH-WHITE-300x225.jpg",
+ "assets/images/products/categories/work-station/evolution/Evolution-single-desk-and-modesty-WTWT-300x300.jpg",
+ "assets/images/products/categories/work-station/evolution/Evolution-single-desk-mobile-pedestal-WTWT-300x300.jpg"
+ ]
+ },
+ {
+ "id": 46,
+ "name": "Zama",
+ "description": "Functional and versatile bench desk system for modern offices. Available as single desks or multi‑user benching solutions. Flexible configurations to fit different office layouts—ideal for individual and collaborative spaces.",
+ "image": "assets/images/products/categories/work-station/zama/10_660x300.webp",
+ "alt": "Zama",
+ "category": "work-station",
+ "images": [
+ "assets/images/products/categories/work-station/zama/10_660x300.webp",
+ "assets/images/products/categories/work-station/zama/11_660x300.webp",
+ "assets/images/products/categories/work-station/zama/13.webp",
+ "assets/images/products/categories/work-station/zama/3_660x300.webp"
+ ],
+ "descriptionLong": [
+ "Functional, versatile bench desk system. Single desks or multi‑user benching options. Flexible configurations for varied layouts.",
+ "Ideal for both individual work and collaborative spaces. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Premium laminate, aluminum/steel frame",
+ "Configurations": "Single or multi‑user benching",
+ "Flexibility": "Fits varied office layouts",
+ "Use": "Individual and collaborative",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/work-station/zama/6_660x300.webp",
+ "assets/images/products/categories/work-station/zama/10_660x300.webp",
+ "assets/images/products/categories/work-station/zama/13.webp"
+ ]
+ },
+ {
+ "id": 47,
+ "name": "Evolution Dual Desk",
+ "description": "Dual desk with a clean gap between tops for screen brackets. Cut‑out sections allow simple cable access and organization. Wide surface area for comfortable, ample working space—ideal for collaboration and individual tasks.",
+ "image": "assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg",
+ "alt": "Evolution Dual Desk",
+ "category": "work-station",
+ "images": [
+ "assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg",
+ "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg",
+ "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722.jpg",
+ "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1800X1510X722-300x300.jpg"
+ ],
+ "descriptionLong": [
+ "Dual desk with clean gap for adding screen brackets. Cut‑outs for simple cable access and organization. Wide surface area for comfort and productivity.",
+ "Practical for both collaboration and individual tasks. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Premium laminate, steel frame",
+ "Design": "Dual desk; gap for screens; cable cut‑outs",
+ "Surface": "Wide area for comfortable work",
+ "Use": "Collaboration and individual tasks",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/work-station/evolution-dual-desk/Dual-Desk-with-Cut-FG-Top-with-Aluminium-Grey-Steel-500x500.jpg",
+ "assets/images/products/categories/work-station/evolution-dual-desk/EVOLUTION-NEW-DUAL-BENCH-1200X1510X722-300x300.jpg"
+ ]
+ },
+ {
+ "id": 48,
+ "name": "Xpress Lite",
+ "description": "Simplistic design that fits easily into any workspace. Sleek panel office desk with a clean, modern look. Compact sizes suit both small and large offices; quick and easy to install.",
+ "image": "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp",
+ "alt": "Xpress Lite",
+ "category": "work-station",
+ "images": [
+ "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp",
+ "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_03.webp",
+ "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_04.webp",
+ "assets/images/products/categories/work-station/xpress-lite/XPRESS-LITE-1.jpg"
+ ],
+ "descriptionLong": [
+ "Simplistic desk that fits into any workspace. Sleek panel design with a clean, modern look. Compact sizes to suit small and large offices.",
+ "Quick and easy installation. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Premium laminate, steel frame",
+ "Design": "Sleek panel desk; simplistic fit",
+ "Sizes": "Compact options for varied offices",
+ "Install": "Quick, easy installation",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/work-station/xpress-lite/xpress-lite-3.jpg",
+ "assets/images/products/categories/work-station/xpress-lite/WFH_Xpress_Lite_01.webp"
+ ]
+ },
+ {
+ "id": 49,
+ "name": "V30",
+ "description": "Strong and versatile workstation system for modern offices. Available in multiple compositions to suit different layouts. Ideal for individual and collaborative use with a clean, minimalist design.",
+ "image": "assets/images/products/categories/work-station/v30/v30.webp",
+ "alt": "V30",
+ "category": "work-station",
+ "images": [
+ "assets/images/products/categories/work-station/v30/v30.webp",
+ "assets/images/products/categories/work-station/v30/v30 (12).webp",
+ "assets/images/products/categories/work-station/v30/v30 (14).webp",
+ "assets/images/products/categories/work-station/v30/v30 (16).webp"
+ ],
+ "descriptionLong": [
+ "Strong, versatile workstation system. Multiple compositions for different office layouts. Ideal for individual and collaborative work.",
+ "Clean, minimalist design that blends into any workspace. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Premium laminate/veneer, steel frame",
+ "Configurations": "Multiple compositions for varied layouts",
+ "Use": "Individual and collaborative",
+ "Design": "Clean, minimalist",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/work-station/v30/v30.webp",
+ "assets/images/products/categories/work-station/v30/v30 (12).webp"
+ ]
+ },
+ {
+ "id": 50,
+ "name": "3.60",
+ "description": "Premium executive task chair with 3.60 design. Perfect for executive offices and high-end work environments with superior comfort and ergonomics.",
+ "image": "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp",
+ "alt": "3.60",
+ "category": "executive-task-chair",
+ "images": [
+ "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp",
+ "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_04.webp",
+ "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_06.webp",
+ "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_09.webp"
+ ],
+ "descriptionLong": [
+ "Experience executive comfort with our 3.60 task chair. This premium piece combines superior ergonomics with luxury design, perfect for executive offices and high-end work environments.",
+ "The 3.60 executive task chair features premium materials, ergonomic design, and luxury styling. The superior construction and refined finish create an impressive atmosphere while providing exceptional comfort for executive work and professional environments."
+ ],
+ "additionalInformation": {
+ "Material": "Premium leather, aluminum base",
+ "Design": "Executive luxury aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_11.webp",
+ "assets/images/products/categories/executive-task-chair/3.60/360_MOTION-360_02.webp"
+ ]
+ },
+ {
+ "id": 51,
+ "name": "Riya",
+ "description": "Elegant executive task chair with Riya design. Perfect for professional offices and executive environments with sophisticated comfort.",
+ "image": "assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp",
+ "alt": "Riya",
+ "category": "executive-task-chair",
+ "images": [
+ "assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp",
+ "assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp",
+ "assets/images/products/categories/executive-task-chair/riya/csm_riya__7__3b06473471.webp"
+ ],
+ "descriptionLong": [
+ "Achieve professional excellence with our Riya executive task chair. This elegant piece combines sophisticated design with superior comfort, perfect for professional offices and executive environments.",
+ "The Riya executive task chair features premium materials, elegant design, and professional styling. The sophisticated construction and refined finish create an impressive atmosphere while providing exceptional comfort for professional work and executive environments."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Elegant professional aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/executive-task-chair/riya/csm_riya-_01__0ec19d8381.webp",
+ "assets/images/products/categories/executive-task-chair/riya/csm_riya__5__933753b9c2.webp"
+ ]
+ },
+ {
+ "id": 52,
+ "name": "Allure",
+ "description": "Luxury executive task chair with Allure design. Perfect for high-end executive offices and premium work environments with exceptional comfort.",
+ "image": "assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp",
+ "alt": "Allure",
+ "category": "executive-task-chair",
+ "images": [
+ "assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp",
+ "assets/images/products/categories/executive-task-chair/allure/ALLURE_02.webp",
+ "assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_CONFERENCE_01.webp",
+ "assets/images/products/categories/executive-task-chair/allure/ALLURE_HIGH_OSCILO_02.webp"
+ ],
+ "descriptionLong": [
+ "Indulge in luxury comfort with our Allure executive task chair. This premium piece combines luxury design with exceptional comfort, perfect for high-end executive offices and premium work environments.",
+ "The Allure executive task chair features premium materials, luxury design, and premium styling. The exceptional construction and refined finish create an impressive atmosphere while providing exceptional comfort for executive work and luxury environments."
+ ],
+ "additionalInformation": {
+ "Material": "Premium leather, aluminum base",
+ "Design": "Luxury premium aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/executive-task-chair/allure/ALLURE_LOW_CONFERENCE_02.webp",
+ "assets/images/products/categories/executive-task-chair/allure/ALLURE_01.webp"
+ ]
+ },
+ {
+ "id": 53,
+ "name": "Accord",
+ "description": "Professional executive task chair with Accord design. Perfect for executive offices and professional environments with superior ergonomics and comfort.",
+ "image": "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg",
+ "alt": "Accord",
+ "category": "executive-task-chair",
+ "images": [
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg",
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-02.jpg",
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-03.jpg",
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-05.jpg"
+ ],
+ "descriptionLong": [
+ "Experience professional comfort with our Accord executive task chair. This professional piece combines superior ergonomics with comfortable design, perfect for executive offices and professional environments.",
+ "The Accord executive task chair features premium materials, professional design, and ergonomic styling. The superior construction and refined finish create a productive atmosphere while providing exceptional comfort for executive work and professional environments."
+ ],
+ "additionalInformation": {
+ "Material": "Premium fabric, aluminum base",
+ "Design": "Professional ergonomic aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Black-01.jpg",
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Amber-01.jpg",
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Black-02.jpg",
+ "assets/images/products/categories/executive-task-chair/accord/Accord-Black-03.jpg"
+ ]
+ },
+ {
+ "id": 54,
+ "name": "Glove",
+ "description": "Solid wooden legs for natural style. Durable and stable build. Strong metal frame for durability. Great for canteens.",
+ "image": "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp",
+ "alt": "Glove",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp",
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_02.webp",
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLACK.webp",
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BLUE_02.webp"
+ ],
+ "descriptionLong": [
+ "Glove brings natural style with solid wooden legs and a durable, stable build suited to daily use in canteens.",
+ "A strong metal frame adds long-term durability while the overall design balances warmth and resilience.",
+ "Great for canteens and shared dining spaces, Glove blends comfort, longevity, and a clean look."
+ ],
+ "additionalInformation": {
+ "Material": "Solid wooden legs, metal frame",
+ "Design": "Natural style with durable, stable build",
+ "Frame": "Strong metal frame for durability",
+ "Use Case": "Great for canteens",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_LACQUERED.webp",
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_BEECH_WHITE_01.webp",
+ "assets/images/products/categories/canteen-chairs/glove/GLOVE_4-LEGGED_OCHER-01.webp"
+ ]
+ },
+ {
+ "id": 55,
+ "name": "Kalea",
+ "description": "Slim and modern plastic seat. Ideal for canteens and dining spaces. Lightweight.",
+ "image": "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg",
+ "alt": "Kalea",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg",
+ "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-04.jpg",
+ "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-02.jpg",
+ "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-03.jpg"
+ ],
+ "descriptionLong": [
+ "Kalea features a slim and modern plastic seat that fits effortlessly into contemporary canteens and dining spaces.",
+ "Its lightweight construction makes moving and cleaning fast and simple without compromising stability.",
+ "Ideal where a clean, modern look and practical everyday usability are essential."
+ ],
+ "additionalInformation": {
+ "Material": "Slim plastic seat, sturdy frame",
+ "Design": "Slim and modern plastic seat",
+ "Target Areas": "Ideal for canteens and dining spaces",
+ "Weight": "Lightweight for easy handling",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-TQ-04.jpg",
+ "assets/images/products/categories/canteen-chairs/kalea/Kalea-4-Legged-Black-BLK-03.jpg"
+ ]
+ },
+ {
+ "id": 56,
+ "name": "Abril",
+ "description": "Perfect for canteens and casual places. Available in a variety of colors. Strong and durable build.",
+ "image": "assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg",
+ "alt": "Abril",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_004.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_006.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_022.jpg"
+ ],
+ "descriptionLong": [
+ "The Abril canteen chair is perfect for canteens and casual places, offering reliable comfort and everyday durability. Its clean, versatile aesthetic fits seamlessly into modern shared dining spaces.",
+ "Available in a variety of colors, Abril lets you match your environment or brand palette with ease while maintaining a cohesive look across your dining areas.",
+ "Built strong and durable for daily use, Abril stands up to high-traffic settings while remaining comfortable and easy to maintain."
+ ],
+ "additionalInformation": {
+ "Material": "Durable shell, sturdy frame",
+ "Design": "Perfect for canteens and casual places",
+ "Build": "Strong and durable for daily use",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_050.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_001.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_066.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_069.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_070.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_071.jpg",
+ "assets/images/products/categories/canteen-chairs/abril/ABRIL_137.jpg"
+ ]
+ },
+ {
+ "id": 57,
+ "name": "Costa",
+ "description": "Lightweight and easy to carry. Weather resistant and long lasting. Available in range of colors. Non-slip feet for added stability and safety.",
+ "image": "assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp",
+ "alt": "Costa",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp",
+ "assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-02a.webp",
+ "assets/images/products/categories/canteen-chairs/costa/Costa-Anthracite-Mood-02.jpg",
+ "assets/images/products/categories/canteen-chairs/costa/Costa-Moss-Green-02.jpg"
+ ],
+ "descriptionLong": [
+ "Costa is lightweight and easy to carry, simplifying reconfiguration and cleaning in busy dining spaces.",
+ "It is weather resistant and long lasting, making it suitable for both indoor and outdoor use while retaining its look over time.",
+ "Available in a range of colors with non-slip feet for added stability and safety, Costa delivers dependable comfort every day."
+ ],
+ "additionalInformation": {
+ "Material": "Weather-resistant shell, sturdy legs",
+ "Design": "Lightweight and easy to carry",
+ "Weather Resistance": "Weather resistant and long lasting",
+ "Safety": "Non-slip feet for added stability and safety",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/costa/Costa-White-02a.webp",
+ "assets/images/products/categories/canteen-chairs/costa/Costa_Side_Canteen_00_600x600px.webp"
+ ]
+ },
+ {
+ "id": 58,
+ "name": "Lambda",
+ "description": "Versatile for everyday use. Comfortable, modern, and adaptable to different needs. Fits perfectly in canteens or home offices.",
+ "image": "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp",
+ "alt": "Lambda",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48033.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48034.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48009.webp"
+ ],
+ "descriptionLong": [
+ "Lambda is versatile for everyday use with a comfortable, modern form that adapts to different needs.",
+ "The balanced proportions and supportive seat work well across a range of tasks and settings.",
+ "Fits perfectly in canteens or home offices where flexible, dependable seating is required."
+ ],
+ "additionalInformation": {
+ "Material": "Durable shell, supportive frame",
+ "Design": "Comfortable, modern, and adaptable",
+ "Everyday Use": "Versatile for everyday use",
+ "Adaptability": "Adapts to different needs",
+ "Use Case": "Fits perfectly in canteens or home offices",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48014.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_green_48017.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4001_90_red_48015.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48064.webp",
+ "assets/images/products/categories/canteen-chairs/lambda/la_4002_90_48065.webp"
+ ]
+ },
+ {
+ "id": 59,
+ "name": "Bika",
+ "description": "Versatile for both indoor and outdoor settings. Highly stackable for space saving convenience. Available in variety of colors.",
+ "image": "assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg",
+ "alt": "Bika",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg",
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_022.jpg",
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_037.jpg",
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_039.jpg"
+ ],
+ "descriptionLong": [
+ "Bika is versatile for both indoor and outdoor settings, delivering dependable performance across diverse environments.",
+ "Its highly stackable design enables space-saving storage, making changeovers and cleaning faster and more efficient.",
+ "Available in a variety of colors, Bika helps you achieve the right look while maintaining robust, everyday practicality."
+ ],
+ "additionalInformation": {
+ "Material": "Weather-resistant shell, steel frame",
+ "Design": "Versatile for indoor and outdoor",
+ "Stackability": "Highly stackable for space saving",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_045.jpg",
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_021.jpg",
+ "assets/images/products/categories/canteen-chairs/bika/BIKA_048.jpg"
+ ]
+ },
+ {
+ "id": 60,
+ "name": "Riva",
+ "description": "Seamless, modern design with rounded edge. Seat and back formed as one piece for comfort. Strong and durable for everyday use. Stackable for space saving storage.",
+ "image": "assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp",
+ "alt": "Riva",
+ "category": "canteen-chairs",
+ "images": [
+ "assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp",
+ "assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp",
+ "assets/images/products/categories/canteen-chairs/riva/Riva-Moss-02.jpg",
+ "assets/images/products/categories/canteen-chairs/riva/Riva-White-02.webp"
+ ],
+ "descriptionLong": [
+ "Riva showcases a seamless, modern design with a soft rounded edge, delivering a clean aesthetic that elevates contemporary spaces.",
+ "The seat and back are formed as one piece for comfort and support, while the strong build ensures durability for everyday use.",
+ "Stackable for space-saving storage, Riva simplifies changeovers and helps you keep shared areas organized."
+ ],
+ "additionalInformation": {
+ "Material": "One-piece shell, robust frame",
+ "Design": "Seamless, modern with rounded edge",
+ "Comfort": "Seat and back formed as one piece",
+ "Durability": "Strong and durable for everyday use",
+ "Stackable": "Stackable for space saving storage",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/canteen-chairs/riva/Riva-Anthracite-02.webp",
+ "assets/images/products/categories/canteen-chairs/riva/Riva-Ice-Blue-02.webp"
+ ]
+ },
+ {
+ "id": 61,
+ "name": "Lockers",
+ "description": "Secure storage solution for personal and workplace items. Available in multiple sizes and door configurations with optional lock types. Suitable for offices, staff areas, and shared workspaces.",
+ "image": "assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg",
+ "alt": "Lockers",
+ "category": "storage",
+ "images": [
+ "assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg",
+ "assets/images/products/categories/storage/lockers/CAMPUS_01.webp",
+ "assets/images/products/categories/storage/lockers/CAMPUS_02.webp",
+ "assets/images/products/categories/storage/lockers/CAMPUS_03.webp"
+ ],
+ "descriptionLong": [
+ "Secure storage for personal and workplace items. Multiple sizes and door configurations. Optional lock types for different security needs.",
+ "Ideal for offices, staff areas, and shared workspaces. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Steel construction",
+ "Configurations": "Multiple sizes and door options",
+ "Lock Types": "Key, combination, or digital",
+ "Use": "Offices, staff areas, shared workspaces",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/storage/lockers/CAMPUS_04.webp",
+ "assets/images/products/categories/storage/lockers/backdrop-locker-SYS163017-001-001.jpg",
+ "assets/images/products/categories/storage/lockers/CAMPUS_05.webp",
+ "assets/images/products/categories/storage/lockers/COVER.jpg",
+ "assets/images/products/categories/storage/lockers/image001.png",
+ "assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300 (1).png",
+ "assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-1280-WT-300x300.png",
+ "assets/images/products/categories/storage/lockers/Locker-6-DoorFrame-912-WT.png",
+ "assets/images/products/categories/storage/lockers/SYS163017-001-1-300x300.jpg"
+ ]
+ },
+ {
+ "id": 62,
+ "name": "Melamine Storage",
+ "description": "Stylish storage with a smooth melamine finish. Strong and durable for everyday office use. Available as cabinets, drawers, and mobile pedestals—designed to keep files and essentials organized.",
+ "image": "assets/images/products/categories/storage/melamine-storage/1.webp",
+ "alt": "Melamine Storage",
+ "category": "storage",
+ "images": [
+ "assets/images/products/categories/storage/melamine-storage/1.webp",
+ "assets/images/products/categories/storage/melamine-storage/25.webp",
+ "assets/images/products/categories/storage/melamine-storage/26.webp",
+ "assets/images/products/categories/storage/melamine-storage/29.webp"
+ ],
+ "descriptionLong": [
+ "Smooth melamine finish with modern style. Strong, durable storage for everyday office use. Options include cabinets, drawers, and mobile pedestals.",
+ "Keeps files, documents, and office essentials organized. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Melamine, steel hardware",
+ "Finish": "Smooth melamine",
+ "Variants": "Cabinets, drawers, mobile pedestals",
+ "Use": "Files, documents, office essentials",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/storage/melamine-storage/30.webp",
+ "assets/images/products/categories/storage/melamine-storage/1.webp",
+ "assets/images/products/categories/storage/melamine-storage/25.webp",
+ "assets/images/products/categories/storage/melamine-storage/26.webp"
+ ]
+ },
+ {
+ "id": 63,
+ "name": "Metal Storage",
+ "description": "Clean, professional look that blends into any workspace. Options include lockers, cabinets, and pedestal drawers. Provides secure space for files, stationery, and personal items.",
+ "image": "assets/images/products/categories/storage/metal-storage/COVER.jpg",
+ "alt": "Metal Storage",
+ "category": "storage",
+ "images": [
+ "assets/images/products/categories/storage/metal-storage/COVER.jpg",
+ "assets/images/products/categories/storage/metal-storage/1024x500_Gallery_Metal-Lockers_1.webp",
+ "assets/images/products/categories/storage/metal-storage/400x400_Thumbnail_Storage_MetalLocker.jpg",
+ "assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_03_600x600px.webp"
+ ],
+ "descriptionLong": [
+ "Clean, professional metal storage for any workspace. Available as lockers, cabinets, and pedestal drawers.",
+ "Secure storage for files, stationery, and personal items. It is backed by a 5-year warranty."
+ ],
+ "additionalInformation": {
+ "Material": "Powder‑coated steel",
+ "Variants": "Lockers, cabinets, pedestal drawers",
+ "Look": "Clean, professional; blends in",
+ "Use": "Files, stationery, personal items",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/storage/metal-storage/Storage-Metal-Lockers_Gallery_07_600x600px.webp",
+ "assets/images/products/categories/storage/metal-storage/COVER.jpg"
+ ]
+ },
+ {
+ "id": 64,
+ "name": "La Mia",
+ "description": "Options with or without arms. Available in black, light grey, or white. Optional upholstered seat for added comfort. Perfect for training rooms, seminars, and collaborative spaces.",
+ "image": "assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg",
+ "alt": "La Mia",
+ "category": "training-chairs",
+ "images": [
+ "assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg",
+ "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_04_600x600px.jpg",
+ "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_05_600x600px.jpg",
+ "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_08_600x600px.jpg"
+ ],
+ "descriptionLong": [
+ "La Mia offers options with or without arms to meet different preferences. Available in black, light grey, or white with an optional upholstered seat for added comfort.",
+ "Perfect for training rooms, seminars, and collaborative spaces that require versatile seating."
+ ],
+ "additionalInformation": {
+ "Material": "Durable frame, optional upholstered seat",
+ "Arms": "Options with or without arms",
+ "Colors": "Black, light grey, or white",
+ "Use Cases": "Training rooms, seminars, collaborative spaces",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_09_600x600px.jpg",
+ "assets/images/products/categories/training-chairs/la-mia/LaMia-Visitors.jpg",
+ "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_12_600x600px.jpg",
+ "assets/images/products/categories/training-chairs/la-mia/Seating_La-Mia_Gallery_17_600x600px.webp"
+ ]
+ },
+ {
+ "id": 65,
+ "name": "La Kendo",
+ "description": "Versatile chair for meetings, training and collaborative spaces. Optional upholstered seat. Comfortable seat and back. Optional arms and writing tablet.",
+ "image": "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg",
+ "alt": "La Kendo",
+ "category": "training-chairs",
+ "images": [
+ "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg",
+ "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-3.jpg",
+ "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-4.jpg",
+ "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-5.jpg"
+ ],
+ "descriptionLong": [
+ "La Kendo is a versatile chair for meetings, training, and collaborative spaces. It offers an optional upholstered seat, optional arms, and an optional writing tablet.",
+ "Comfortable seat and back provide support across a wide range of activities."
+ ],
+ "additionalInformation": {
+ "Material": "Durable frame, optional upholstered seat",
+ "Design": "Versatile for meetings, training, collaboration",
+ "Arms": "Optional arms available",
+ "Writing Tablet": "Optional tablet available",
+ "Comfort": "Comfortable seat and back",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-6.jpg",
+ "assets/images/products/categories/training-chairs/la-kendo/LA-KENDO-SIDE-2.jpg"
+ ]
+ },
+ {
+ "id": 66,
+ "name": "Icon",
+ "description": "Breathable mesh back for comfort. Optional writing tablet available. Sleek and functional training chair. Stackable when tablet is not attached.",
+ "image": "assets/images/products/categories/training-chairs/icon/ICON-1.jpg",
+ "alt": "Icon",
+ "category": "training-chairs",
+ "images": [
+ "assets/images/products/categories/training-chairs/icon/ICON-1.jpg",
+ "assets/images/products/categories/training-chairs/icon/ICON-2.jpg",
+ "assets/images/products/categories/training-chairs/icon/ICON-3.jpg",
+ "assets/images/products/categories/training-chairs/icon/ICON-4.jpg"
+ ],
+ "descriptionLong": [
+ "Icon features a breathable mesh back for comfort and support during long sessions. An optional writing tablet is available to add note‑taking capability when needed.",
+ "Sleek and functional design; stackable when the tablet is not attached."
+ ],
+ "additionalInformation": {
+ "Material": "Breathable mesh back, steel frame",
+ "Design": "Sleek and functional training chair",
+ "Writing Tablet": "Optional tablet available",
+ "Stacking": "Stackable when tablet is not attached",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/training-chairs/icon/ICON-7.jpg",
+ "assets/images/products/categories/training-chairs/icon/ICON-1.jpg",
+ "assets/images/products/categories/training-chairs/icon/Icon-Setting-03.jpg",
+ "assets/images/products/categories/training-chairs/icon/Seating_Icon_Gallery_06_600x600px.jpg"
+ ]
+ },
+ {
+ "id": 67,
+ "name": "Arete",
+ "description": "Comfortable moulded foam seat and back. Flip up seat for convenient nesting and space saving storage. Modern training chair with ergonomic design. Ideal for training rooms and seminar spaces.",
+ "image": "assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg",
+ "alt": "Arete",
+ "category": "training-chairs",
+ "images": [
+ "assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg",
+ "assets/images/products/categories/training-chairs/arete/Arete-Blue-04.jpg",
+ "assets/images/products/categories/training-chairs/arete/Arete-Green-02.jpg",
+ "assets/images/products/categories/training-chairs/arete/Arete-Green-04.jpg"
+ ],
+ "descriptionLong": [
+ "Arete features a comfortable moulded foam seat and back, delivering support for extended sessions. A flip up seat enables convenient nesting for space‑saving storage between trainings.",
+ "The modern, ergonomic design makes it ideal for training rooms and seminar spaces."
+ ],
+ "additionalInformation": {
+ "Material": "Moulded foam seat and back, steel frame",
+ "Design": "Modern ergonomic training chair",
+ "Nesting": "Flip up seat allows convenient nesting and storage",
+ "Use Cases": "Ideal for training rooms and seminar spaces",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/training-chairs/arete/Arete-Grey-04.jpg",
+ "assets/images/products/categories/training-chairs/arete/Arete-Blue-02.jpg"
+ ]
+ },
+ {
+ "id": 68,
+ "name": "Free Rein",
+ "description": "Modern and practical training chair. Comfortable seat with supportive back. Includes writing tablet for note taking.",
+ "image": "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg",
+ "alt": "Free Rein",
+ "category": "training-chairs",
+ "images": [
+ "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg",
+ "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-3.jpg",
+ "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-4.jpg",
+ "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-8.jpg"
+ ],
+ "descriptionLong": [
+ "Free Rein is a modern and practical training chair with a comfortable seat and supportive back. It includes a writing tablet for convenient note taking during sessions.",
+ "A smart choice for versatile, everyday training environments."
+ ],
+ "additionalInformation": {
+ "Material": "Supportive seat and back, durable frame",
+ "Design": "Modern and practical training chair",
+ "Writing Tablet": "Includes tablet for note taking",
+ "Comfort": "Comfortable seat with supportive back",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/training-chairs/free-rein/Seating_Free-Rein_Gallery_03_600x600px.jpg",
+ "assets/images/products/categories/training-chairs/free-rein/FREE-REIN-1.jpg"
+ ]
+ },
+ {
+ "id": 69,
+ "name": "Glove Plus Tablet",
+ "description": "Supportive seat and backrest for comfort. Fitted with a handy writing tablet.",
+ "image": "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp",
+ "alt": "Glove Plus Table",
+ "category": "training-chairs",
+ "images": [
+ "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp",
+ "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp"
+ ],
+ "descriptionLong": [
+ "Glove Plus Tablet offers a supportive seat and backrest for comfort during extended sessions. It is fitted with a handy writing tablet for notes and tasks.",
+ "A compact, practical solution for training rooms and classrooms."
+ ],
+ "additionalInformation": {
+ "Material": "Supportive seat and backrest, integrated writing tablet",
+ "Design": "Practical training chair with tablet",
+ "Tablet": "Fitted with a handy writing tablet",
+ "Comfort": "Supportive seat and backrest",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-01.webp",
+ "assets/images/products/categories/training-chairs/glove-plus-table/GLOVE_4-LEGGED_TERRA_PAD-02.webp"
+ ]
+ },
+ {
+ "id": 70,
+ "name": "Chic",
+ "description": "Sleek swivel task chair in chic black or light grey finish. Features breathable mesh back for comfort and lightweight design perfect for office use.",
+ "image": "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp",
+ "alt": "Chic",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp",
+ "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_03_600x600px.webp",
+ "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_10_600x600px.jpg",
+ "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_12_600x600px.webp"
+ ],
+ "descriptionLong": [
+ "The Chic swivel task chair delivers exceptional comfort and style for modern office environments. Featuring a breathable mesh back that promotes airflow and reduces heat buildup during long work sessions, this chair ensures you stay comfortable throughout your day.",
+ "Available in chic black or light grey finish, the sleek design seamlessly integrates into any professional workspace. The lightweight construction makes it easy to move and reposition, while the supportive backrest provides simple yet effective functionality for daily office use.",
+ "Perfect for individual workstations, meeting rooms, or collaborative spaces, the Chic task chair combines practical functionality with contemporary aesthetics. Its versatile design and reliable construction make it an ideal choice for businesses seeking quality seating solutions."
+ ],
+ "additionalInformation": {
+ "Material": "Breathable mesh back, lightweight frame",
+ "Design": "Sleek swivel task chair in chic black or light grey finish",
+ "Finish Options": "Black or light grey finish available",
+ "Comfort Features": "Breathable mesh back for airflow and comfort",
+ "Functionality": "Supportive backrest with simple functionality",
+ "Use Cases": "Perfect for office use and professional workspaces",
+ "Construction": "Lightweight and versatile design",
+ "Durability": "Robust construction for daily office use",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/chic/Chic_Grey_Gallery_09_600x600px.jpg",
+ "assets/images/products/categories/task-chairs/chic/Chic_Black_Gallery_01_600x600px.webp",
+ "assets/images/products/categories/task-chairs/chic/Chic-Black-Simple-02.jpg",
+ "assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-01-768x770.jpg",
+ "assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-03-768x768.jpg",
+ "assets/images/products/categories/task-chairs/chic/Chic-Light-Grey-04-768x768.jpg"
+ ]
+ },
+ {
+ "id": 71,
+ "name": "Dot Pro",
+ "description": "Sleek, modern swivel task chair with ergonomic comfort for daily use. Versatile for office or meeting spaces with durable construction and easy maintenance.",
+ "image": "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp",
+ "alt": "Dot Pro",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_06.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_07.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_08.webp"
+ ],
+ "descriptionLong": [
+ "The Dot Pro swivel task chair represents the perfect fusion of sleek modern design and ergonomic comfort. Engineered for daily use in demanding work environments, this chair delivers exceptional support and versatility for both individual workstations and collaborative meeting spaces.",
+ "Featuring a contemporary aesthetic with clean lines and premium materials, the Dot Pro is designed for durability and easy maintenance. Available in both mesh and upholstered finishes, with optional headrest configurations, this chair adapts to your specific workspace needs. The robust construction ensures long-lasting performance while the ergonomic design promotes proper posture and comfort during extended work sessions.",
+ "Whether you're setting up a modern office workstation or furnishing a dynamic meeting room, the Dot Pro task chair provides the perfect balance of style, comfort, and functionality. Its versatile design makes it equally suitable for focused individual work and collaborative team environments."
+ ],
+ "additionalInformation": {
+ "Material": "Premium mesh or upholstered fabric, reinforced steel frame",
+ "Design": "Sleek modern swivel task chair with ergonomic features",
+ "Finish Options": "Mesh or upholstered finish available",
+ "Headrest": "Available with or without headrest",
+ "Use Cases": "Workstations and meeting rooms",
+ "Ergonomics": "Designed for daily use with proper posture support",
+ "Maintenance": "Easy to clean and maintain",
+ "Durability": "Robust construction for long-lasting performance",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_09.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_02.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_ATOM_10.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_HEADREST.webp",
+ "assets/images/products/categories/task-chairs/dot-pro/DOT-PRO_MOTION_01.webp"
+ ]
+ },
+ {
+ "id": 72,
+ "name": "Flexi",
+ "description": "Modern ergonomic swivel task chair with mesh back and adjustable lumbar support. Features synchronous tilt for dynamic sitting comfort, optional headrest/armrest/base finishes, and available in multiple colors including black.",
+ "image": "assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp",
+ "alt": "Flexi",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp",
+ "assets/images/products/categories/task-chairs/flexi/fx_1103a_42764.webp",
+ "assets/images/products/categories/task-chairs/flexi/fx_1103a_42766.webp",
+ "assets/images/products/categories/task-chairs/flexi/fx_1103a_42770.webp"
+ ],
+ "descriptionLong": [
+ "The Flexi swivel task chair delivers exceptional ergonomic support for modern workspaces. Featuring a breathable mesh back with adjustable lumbar support, this chair promotes proper spinal alignment and reduces back strain during extended work sessions.",
+ "The innovative synchronous tilt mechanism allows the seat and backrest to recline together in perfect harmony, providing dynamic sitting comfort that adapts to your natural movement patterns. This feature encourages healthy posture changes throughout the day, reducing fatigue and improving productivity.",
+ "Available in multiple colors including black, the Flexi chair offers optional headrest, armrest, and base finishes for complete customization. Designed specifically for modern ergonomic workspaces, this chair seamlessly integrates into contemporary office environments while providing superior comfort and support."
+ ],
+ "additionalInformation": {
+ "Material": "Breathable mesh back, premium fabric seat",
+ "Design": "Modern ergonomic swivel task chair for contemporary workspaces",
+ "Back Support": "Mesh back with adjustable lumbar support",
+ "Tilt Mechanism": "Synchronous tilt for dynamic sitting comfort",
+ "Customization Options": "Optional headrest, armrest, and base finishes",
+ "Ergonomic Features": "Promotes proper spinal alignment and reduces back strain",
+ "Dynamic Comfort": "Adapts to natural movement patterns and encourages healthy posture",
+ "Use Cases": "Designed for modern ergonomic workspaces",
+ "Workspace Integration": "Seamlessly integrates into contemporary office environments",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/flexi/FX_1104_087_22_43704.webp",
+ "assets/images/products/categories/task-chairs/flexi/fx_1103a_42762.webp",
+ "assets/images/products/categories/task-chairs/flexi/FX_1104_087_43688.webp",
+ "assets/images/products/categories/task-chairs/flexi/FX_1104_087_43691.webp",
+ "assets/images/products/categories/task-chairs/flexi/FX_1104_087_43694.webp"
+ ]
+ },
+ {
+ "id": 73,
+ "name": "Victory",
+ "description": "Elegant swivel task chair with high back design and flowing curves built to stand out in any space. Features breathable mesh back in wide spectrum of colors and sync tilt mechanism for dynamic movement and posture comfort.",
+ "image": "assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp",
+ "alt": "Victory",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp",
+ "assets/images/products/categories/task-chairs/victory/VI_1401_41507.webp",
+ "assets/images/products/categories/task-chairs/victory/vi_1402_42741.webp",
+ "assets/images/products/categories/task-chairs/victory/vi_1405_42712.webp"
+ ],
+ "descriptionLong": [
+ "The Victory swivel task chair commands attention with its elegant high back design and flowing curves, built to stand out in any space. This sophisticated piece combines striking aesthetics with exceptional comfort, making it the perfect centerpiece for executive offices and premium workspaces.",
+ "Featuring a breathable mesh back available in a wide spectrum of colors, the Victory chair allows you to express your personal style while maintaining optimal airflow and comfort throughout your workday. The mesh construction promotes proper ventilation and reduces heat buildup during extended sitting sessions.",
+ "The innovative sync tilt mechanism supports dynamic movement and posture comfort, allowing the seat and backrest to work in perfect harmony. This feature encourages natural movement patterns and healthy posture changes, ensuring you stay comfortable and productive throughout your day while maintaining the chair's elegant, distinguished appearance."
+ ],
+ "additionalInformation": {
+ "Material": "Breathable mesh back, premium frame construction",
+ "Design": "Elegant high back design with flowing curves built to stand out",
+ "Back Design": "High back design with flowing curves for striking appearance",
+ "Mesh Back": "Breathable mesh back available in wide spectrum of colors",
+ "Tilt Mechanism": "Sync tilt mechanism supports dynamic movement and posture comfort",
+ "Ergonomic Features": "Encourages natural movement patterns and healthy posture changes",
+ "Ventilation": "Promotes proper airflow and reduces heat buildup",
+ "Use Cases": "Perfect centerpiece for executive offices and premium workspaces",
+ "Aesthetic Impact": "Built to stand out in any space with sophisticated appearance",
+ "Comfort Features": "Maintains elegant appearance while providing exceptional comfort",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/victory/VI_1411_41480.webp",
+ "assets/images/products/categories/task-chairs/victory/VI_1401_41501.webp",
+ "assets/images/products/categories/task-chairs/victory/VI_1411_41481.webp",
+ "assets/images/products/categories/task-chairs/victory/VI_1411_47941.webp"
+ ]
+ },
+ {
+ "id": 74,
+ "name": "Link",
+ "description": "Advanced swivel task chair with adjustable slide function and breathable mesh back. Features lumbar support control, adjustable arms, optional headrest, and comfortable black fabric seat padding for personalized comfort.",
+ "image": "assets/images/products/categories/task-chairs/link/Link-01.jpg",
+ "alt": "Link",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/link/Link-01.jpg",
+ "assets/images/products/categories/task-chairs/link/Link-02.jpg",
+ "assets/images/products/categories/task-chairs/link/Link-04.jpg",
+ "assets/images/products/categories/task-chairs/link/Link-05.jpg"
+ ],
+ "descriptionLong": [
+ "The Link swivel task chair delivers exceptional personalized comfort through advanced adjustable features. The seat features an adjustable slide function that allows for custom fit, ensuring optimal positioning for users of all sizes and preferences.",
+ "Featuring a breathable mesh back with lumbar support control, the Link chair promotes proper spinal alignment and reduces back fatigue during extended work sessions. The arms can be raised or lowered for user preference, while the optional headrest provides added neck support for enhanced comfort.",
+ "The comfortable black fabric seat padding ensures all-day comfort, while the comprehensive adjustability makes this chair perfect for individual workstations, collaborative spaces, and diverse office environments. The Link chair adapts to your specific needs, creating the perfect ergonomic setup for maximum productivity."
+ ],
+ "additionalInformation": {
+ "Material": "Breathable mesh back, comfortable black fabric seat padding",
+ "Design": "Advanced swivel task chair with comprehensive adjustability",
+ "Seat Features": "Seat with adjustable slide function for custom fit",
+ "Back Support": "Breathable mesh back with lumbar support control",
+ "Arm Adjustability": "Arms can be raised or lowered for user preference",
+ "Headrest Options": "Optional headrest for added neck support",
+ "Seat Comfort": "Comfortable black fabric seat padding",
+ "Ergonomic Features": "Promotes proper spinal alignment and reduces back fatigue",
+ "Use Cases": "Perfect for individual workstations and diverse office environments",
+ "Customization": "Adapts to specific user needs for maximum productivity",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/link/LINK-BACK.jpg",
+ "assets/images/products/categories/task-chairs/link/Link-01.jpg",
+ "assets/images/products/categories/task-chairs/link/LINK-DETAIL-3.jpg"
+ ]
+ },
+ {
+ "id": 75,
+ "name": "Space",
+ "description": "Modern swivel task chair available in breathable mesh or soft 3D knit fabric. Comes in variety of colors including black, grey, green, red, and beige with optional headrest and adjustable arms for extra comfort.",
+ "image": "assets/images/products/categories/task-chairs/space/SP_1501_52751.webp",
+ "alt": "Space",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/space/SP_1501_52751.webp",
+ "assets/images/products/categories/task-chairs/space/SP_1501_52753.webp",
+ "assets/images/products/categories/task-chairs/space/SP_1501_52755.webp",
+ "assets/images/products/categories/task-chairs/space/sp_1502_093_44599_.webp"
+ ],
+ "descriptionLong": [
+ "The Space swivel task chair delivers exceptional comfort and versatility for modern office environments. Available in breathable mesh or soft 3D knit fabric, this chair provides optimal airflow and comfort throughout your workday, adapting to your preferred seating experience.",
+ "With a variety of color options including black, grey, green, red, and beige, the Space chair seamlessly integrates into any office aesthetic. The optional headrest and adjustable arms provide extra comfort and personalized support, ensuring you can customize your seating experience for maximum productivity.",
+ "Featuring a modern design that's perfect for offices and workspaces, the Space chair combines contemporary aesthetics with practical functionality. Whether you prefer the breathable mesh for enhanced airflow or the soft 3D knit fabric for premium comfort, this chair delivers the perfect balance of style and performance for your professional environment."
+ ],
+ "additionalInformation": {
+ "Material": "Available in breathable mesh or soft 3D knit fabric",
+ "Design": "Modern design, perfect for offices and workspaces",
+ "Fabric Options": "Breathable mesh or soft 3D knit fabric available",
+ "Comfort Features": "Optional headrest and adjustable arms for extra comfort",
+ "Customization": "Personalized support and comfort settings",
+ "Use Cases": "Perfect for offices and workspaces",
+ "Aesthetic Integration": "Seamlessly integrates into any office aesthetic",
+ "Comfort Balance": "Perfect balance of style and performance",
+ "Professional Environment": "Ideal for professional work environments",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/space/sp_1522_093_44611_.webp",
+ "assets/images/products/categories/task-chairs/space/SP_1501_52751.webp",
+ "assets/images/products/categories/task-chairs/space/sp_1522_093_44618_.webp",
+ "assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_47876_2.webp",
+ "assets/images/products/categories/task-chairs/space/sp_1523_3d_knit_48219.webp",
+ "assets/images/products/categories/task-chairs/space/Zidle_SP_1502_022_46494.webp"
+ ]
+ },
+ {
+ "id": 76,
+ "name": "DHL",
+ "description": "Ergonomic swivel task chair with breathable mesh back and adjustable features. Available with or without headrest, featuring adjustable arms and sleek black frame ideal for modern offices.",
+ "image": "assets/images/products/categories/task-chairs/dhl/DHL-02.jpg",
+ "alt": "DHL",
+ "category": "task-chairs",
+ "images": [
+ "assets/images/products/categories/task-chairs/dhl/DHL-02.jpg",
+ "assets/images/products/categories/task-chairs/dhl/DHL-04 (1).jpg",
+ "assets/images/products/categories/task-chairs/dhl/DHL-HB-01.jpg",
+ "assets/images/products/categories/task-chairs/dhl/DHL-HB-02.jpg"
+ ],
+ "descriptionLong": [
+ "The DHL swivel task chair delivers superior ergonomic support for modern office environments. Featuring a breathable mesh back that promotes proper posture and reduces fatigue during extended work sessions, this chair ensures optimal comfort throughout your day.",
+ "Available with or without headrest options, the DHL chair adapts to your specific comfort needs. The adjustable arms allow for personalized comfort settings, while the sleek black frame creates a professional aesthetic that seamlessly integrates into any modern office environment.",
+ "Perfect for high-traffic offices, busy work environments, and demanding professional settings, the DHL task chair combines ergonomic excellence with reliable construction. Its breathable design and adjustable features make it an ideal choice for businesses prioritizing employee comfort and productivity."
+ ],
+ "additionalInformation": {
+ "Material": "Breathable mesh back, sleek black frame",
+ "Design": "Ergonomic swivel task chair with adjustable features",
+ "Ergonomic Support": "Breathable mesh back with ergonomic support",
+ "Headrest Options": "Available with or without headrest",
+ "Adjustable Features": "Adjustable arms for personalized comfort",
+ "Frame Design": "Sleek black frame, ideal for modern offices",
+ "Use Cases": "Perfect for high-traffic offices and busy environments",
+ "Comfort Features": "Promotes proper posture and reduces fatigue",
+ "Durability": "Reliable construction for demanding professional settings",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/task-chairs/dhl/DHL-HB-03.jpg",
+ "assets/images/products/categories/task-chairs/dhl/DHL-02.jpg",
+ "assets/images/products/categories/task-chairs/dhl/DHL-HB-04.jpg"
+ ]
+ },
+ {
+ "id": 81,
+ "name": "Evolution Steel",
+ "description": "Available in different sizes to suit any meeting spaces. Can also serve as extra desks for flexible workspace needs. Strong steel frame for stability and long lasting use.",
+ "image": "assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg",
+ "alt": "Evolution Steel",
+ "category": "meeting-tables",
+ "images": [
+ "assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg",
+ "assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png",
+ "assets/images/products/categories/meeting-tables/evolution-steel/web-1015-300x192.jpg"
+ ],
+ "descriptionLong": [
+ "Evolution Steel is available in different sizes to suit any meeting space. It can also serve as extra desks for flexible workspace needs.",
+ "A strong steel frame provides stability for long‑lasting use."
+ ],
+ "additionalInformation": {
+ "Material": "Steel frame, premium tabletop",
+ "Design": "Modern professional aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/meeting-tables/evolution-steel/evolution-1200-meeting-white-300x300 (1).jpg",
+ "assets/images/products/categories/meeting-tables/evolution-steel/pele-green-july-2015-003-300x263 (1).png"
+ ]
+ },
+ {
+ "id": 82,
+ "name": "Snap Conference",
+ "description": "Easy to reconfigure and store when not in use. Lockable castors for easy mobility and stability. Round conference table with a smooth, well finished edge.",
+ "image": "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg",
+ "alt": "Snap Conference",
+ "category": "meeting-tables",
+ "images": [
+ "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg",
+ "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-72dpi-49.jpg",
+ "assets/images/products/categories/meeting-tables/snap-conference/FlipTop-mobile-CONFERENCE-TABLE_20005-300x300.jpg",
+ "assets/images/products/categories/meeting-tables/snap-conference/GraftTable-stackable-classroom5-350x350.jpg"
+ ],
+ "descriptionLong": [
+ "Snap Conference is easy to reconfigure and store when not in use. Lockable castors provide easy mobility and stability when positioned.",
+ "Round conference top with a smooth, well finished edge."
+ ],
+ "additionalInformation": {
+ "Material": "Durable frame, round top",
+ "Design": "Easy to reconfigure and store",
+ "Castors": "Lockable castors for mobility and stability",
+ "Edge": "Smooth, well finished edge",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/meeting-tables/snap-conference/SNAP-desks-floor-Plan-350x350.jpg",
+ "assets/images/products/categories/meeting-tables/snap-conference/entrawood-catalogue-02-350x350.jpg"
+ ]
+ },
+ {
+ "id": 83,
+ "name": "Criss Cross",
+ "description": "Unique criss-cross steel base for modern appeal and stability. Round table top ideal for meetings and discussions. Perfect for offices, lounges, and collaborative spaces.",
+ "image": "assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg",
+ "alt": "Criss Cross",
+ "category": "meeting-tables",
+ "images": [
+ "assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg",
+ "assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg",
+ "assets/images/products/categories/meeting-tables/criss-cross/Rocket-crisscross-moody-screen-350x350.jpg"
+ ],
+ "descriptionLong": [
+ "Criss Cross features a unique criss‑cross steel base that provides modern appeal and stability. A round table top is ideal for meetings and discussions across teams.",
+ "Perfect for offices, lounges, and collaborative spaces seeking a standout meeting piece."
+ ],
+ "additionalInformation": {
+ "Material": "Criss‑cross steel base, premium round top",
+ "Design": "Modern appeal with stable steel base",
+ "Top": "Round top for meetings and discussions",
+ "Use Cases": "Offices, lounges, collaborative spaces",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/meeting-tables/criss-cross/771358111_SHELL-DOLOS-STEEL-FRAME-ONLY-852X852X711-600x600.jpg",
+ "assets/images/products/categories/meeting-tables/criss-cross/entrawood-showroom-march22-2-of-4-350x350.jpg"
+ ]
+ },
+ {
+ "id": 84,
+ "name": "Drone",
+ "description": "Stylish design with versatile shapes to fit any meeting space. Creates a welcoming environment that supports smooth communication. Ideal for boardrooms, training and collaborative settings.",
+ "image": "assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp",
+ "alt": "Drone",
+ "category": "meeting-tables",
+ "images": [
+ "assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp",
+ "assets/images/products/categories/meeting-tables/drone/DRONE_INSTITUCIONAL_DONUT.webp",
+ "assets/images/products/categories/meeting-tables/drone/F5_DRONE_05.webp",
+ "assets/images/products/categories/meeting-tables/drone/F5_DRONE_06_M.webp"
+ ],
+ "descriptionLong": [
+ "Drone features a stylish design with versatile shapes to fit any meeting space. It creates a welcoming environment that supports smooth communication among teams.",
+ "Ideal for boardrooms, training, and collaborative settings."
+ ],
+ "additionalInformation": {
+ "Material": "Premium materials, advanced construction",
+ "Design": "Contemporary sleek aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/meeting-tables/drone/FDR27.webp",
+ "assets/images/products/categories/meeting-tables/drone/DRONE_CENITAL.webp"
+ ]
+ },
+ {
+ "id": 85,
+ "name": "Baron Laptop",
+ "description": "Compact yet sturdy, ideal for laptops, reading, or quick tasks. Lightweight and easy to move for flexible use. Ideal for offices, reception areas, and collaboration spaces.",
+ "image": "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp",
+ "alt": "Baron Laptop",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp",
+ "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp",
+ "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_03_600x600px.webp",
+ "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_04_600x600px.webp"
+ ],
+ "descriptionLong": [
+ "Baron Laptop is compact yet sturdy—ideal for laptops, reading, or quick tasks. Lightweight and easy to move for flexible, on‑the‑fly positioning.",
+ "Perfect for offices, reception areas, and collaboration spaces."
+ ],
+ "additionalInformation": {
+ "Material": "Steel frame, premium tabletop",
+ "Design": "Compact yet sturdy; lightweight and mobile",
+ "Use Cases": "Laptops, reading, quick tasks",
+ "Spaces": "Offices, reception areas, collaboration spaces",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_00_600x600px.webp",
+ "assets/images/products/categories/occasional-tables/baron-laptop/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Laptop_Tables_Categories_Gallery_01_600x600px.webp"
+ ]
+ },
+ {
+ "id": 86,
+ "name": "Happy Hour",
+ "description": "Elegant occasional table with clean, simple lines. Compact and stylish—ideal for casual conversations or quick breaks. Perfect for lounges, coffee areas, and collaborative zones.",
+ "image": "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg",
+ "alt": "Happy Hour",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg",
+ "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR.jpg",
+ "assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_01_600x600px.webp",
+ "assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_02_600x600px.webp"
+ ],
+ "descriptionLong": [
+ "Elegant occasional table with clean, simple lines. Compact and stylish for casual conversations or quick breaks.",
+ "Ideal in lounges, coffee areas, and collaborative zones."
+ ],
+ "additionalInformation": {
+ "Material": "Wood frame, premium tabletop",
+ "Design": "Clean, simple lines; compact footprint",
+ "Use Cases": "Casual conversations, quick breaks",
+ "Spaces": "Lounges, coffee areas, collaborative zones",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/happy-hour/Thumbnail_Desks-Tables_Occasional_Tables_Happy-Hour_Tables_Categories_Gallery_03_600x600px.webp",
+ "assets/images/products/categories/occasional-tables/happy-hour/HAPPY-HOUR-COFFEE-TABLES.jpg"
+ ]
+ },
+ {
+ "id": 87,
+ "name": "Salon Tablet",
+ "description": "Blends seamlessly into modern offices and open‑plan settings. Perfect for flexible workspaces and people on the move. Lightweight and easy to position in lounges, booths, or reception areas.",
+ "image": "assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png",
+ "alt": "Salon Tablet",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png",
+ "assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png",
+ "assets/images/products/categories/occasional-tables/salon-tablet/Salon-Coffee-Table-300Wx450Dx722H-SIDE-VIEW-1024x1024.jpg"
+ ],
+ "descriptionLong": [
+ "Seamlessly fits modern office and open‑plan environments. Ideal for flexible workstyles and people on the move.",
+ "Lightweight; easy to position in lounges, booths, or receptions."
+ ],
+ "additionalInformation": {
+ "Material": "Premium materials",
+ "Design": "Lightweight; seamless in open‑plan settings",
+ "Use Cases": "Flexible working, mobile touchdown",
+ "Spaces": "Lounges, booths, reception areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/salon-tablet/Cocoon-2SEAT-COUCH01-300x300.png",
+ "assets/images/products/categories/occasional-tables/salon-tablet/cocoon-booth03-300x300.png"
+ ]
+ },
+ {
+ "id": 88,
+ "name": "Sphere",
+ "description": "Unique spherical table with Sphere design. Perfect for modern spaces and contemporary environments with distinctive styling and artistic appeal.",
+ "image": "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg",
+ "alt": "Sphere",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg"
+ ],
+ "descriptionLong": [
+ "Make a statement with our Sphere table. This unique piece combines distinctive spherical design with artistic appeal, perfect for modern spaces and contemporary environments.",
+ "The Sphere table features unique spherical construction, distinctive styling, and artistic design. The contemporary form and modern aesthetics create a striking focal point while providing functional surface space for modern living and artistic environments."
+ ],
+ "additionalInformation": {
+ "Material": "Premium materials, spherical construction",
+ "Design": "Unique artistic aesthetic",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg",
+ "assets/images/products/categories/occasional-tables/sphere/Sphere.jpg"
+ ]
+ },
+ {
+ "id": 89,
+ "name": "Baron Oblong",
+ "description": "Compact size, perfect for small spaces and flexible use. Easy to move beside lounge chairs or sofas. Ideal for working, reading, or casual coffee moments.",
+ "image": "assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp",
+ "alt": "Baron Oblong",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp",
+ "assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp",
+ "assets/images/products/categories/occasional-tables/baron-oblong/Thumbnail_Desks-Tables_Occasional_Tables_Baron_Oblong_Laptop_Tables_Categories_Gallery_00_600x600px.webp"
+ ],
+ "descriptionLong": [
+ "Compact occasional table sized for small spaces and flexible use. Easy to move and position beside lounge chairs or sofas.",
+ "Ideal for working, reading, or casual coffee moments."
+ ],
+ "additionalInformation": {
+ "Material": "Steel frame, premium tabletop",
+ "Design": "Compact, easy to reposition",
+ "Use Cases": "Working, reading, coffee moments",
+ "Placement": "Beside lounge chairs or sofas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/baron-oblong/baron-oblong-1.webp",
+ "assets/images/products/categories/occasional-tables/baron-oblong/Coffee_Tables_Baron_Baroness_Pepe_02.webp"
+ ]
+ },
+ {
+ "id": 90,
+ "name": "Nota",
+ "description": "Adjustable height system adapts to your space and needs. Lightweight and designed for flexibility and ease. Sleek, modern look that blends with any interior style.",
+ "image": "assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg",
+ "alt": "Nota",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg",
+ "assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg",
+ "assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg",
+ "assets/images/products/categories/occasional-tables/nota/NOTA_010.jpg"
+ ],
+ "descriptionLong": [
+ "Adjustable height occasional table for adaptable use. Lightweight design for flexible movement and ease.",
+ "Sleek, modern aesthetic that suits any interior. Perfect for lounges, breakout areas, and casual settings."
+ ],
+ "additionalInformation": {
+ "Material": "Premium materials",
+ "Design": "Adjustable height; lightweight and flexible",
+ "Use Cases": "Lounge, breakout, casual settings",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/nota/NOTA_017.jpg",
+ "assets/images/products/categories/occasional-tables/nota/NOTA_005.jpg",
+ "assets/images/products/categories/occasional-tables/nota/NOTA_008.jpg",
+ "assets/images/products/categories/occasional-tables/nota/NOTA_009.jpg"
+ ]
+ },
+ {
+ "id": 91,
+ "name": "Selena",
+ "description": "Circular occasional table that blends form and function. Available as both coffee and side table options. Designed to pair seamlessly with soft seating ranges.",
+ "image": "assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp",
+ "alt": "Selena",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp",
+ "assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp",
+ "assets/images/products/categories/occasional-tables/selena/SELENA.jpg"
+ ],
+ "descriptionLong": [
+ "Circular occasional table blending form and function. Offered as coffee and side table variants.",
+ "Pairs seamlessly with soft seating ranges."
+ ],
+ "additionalInformation": {
+ "Material": "Wood frame, premium tabletop",
+ "Design": "Circular form; coffee and side options",
+ "Compatibility": "Pairs with soft seating ranges",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/selena/SELENA-COFFEE-TABLE.webp",
+ "assets/images/products/categories/occasional-tables/selena/SELENA-SIDE-TABLE.webp"
+ ]
+ },
+ {
+ "id": 92,
+ "name": "Tray",
+ "description": "A stylish choice for serving, display, or everyday use. Black laminate tray top with raised edges. Available in multiple sizes for lounges, receptions, or meeting areas.",
+ "image": "assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg",
+ "alt": "Tray",
+ "category": "occasional-tables",
+ "images": [
+ "assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg",
+ "assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg",
+ "assets/images/products/categories/occasional-tables/tray/Tray-Coffee-Tables.jpg"
+ ],
+ "descriptionLong": [
+ "Stylish tray table suited for serving and display. Black laminate tray top with raised edges for stability.",
+ "Multiple sizes to fit lounges, receptions, or meeting areas."
+ ],
+ "additionalInformation": {
+ "Material": "Steel frame; black laminate tray top",
+ "Design": "Raised edges; stylish practical design",
+ "Sizes": "Multiple sizes available",
+ "Spaces": "Lounges, receptions, meeting areas",
+ "Warranty": "5 years"
+ },
+ "galleryPairs": [
+ "assets/images/products/categories/occasional-tables/tray/TRAY-2.jpg",
+ "assets/images/products/categories/occasional-tables/tray/TRAY-COFFEE-TABLE-SCENE.jpg"
+ ]
}
],
"categories": [
{
- "id": "seating",
- "name": "Seating",
- "description": "Office chairs, lounge chairs, and seating solutions"
+ "id": "training-tables",
+ "name": "Training Tables",
+ "description": "Training tables for educational and collaborative environments"
},
{
- "id": "tables",
- "name": "Tables",
- "description": "Conference tables, workstations, and dining tables"
+ "id": "screens",
+ "name": "Screens",
+ "description": "Privacy screens and acoustic solutions for office spaces"
+ },
+ {
+ "id": "executive-desks",
+ "name": "Executive Desks",
+ "description": "Premium executive desks for high-level professionals"
+ },
+ {
+ "id": "executive-task-chair",
+ "name": "Executive Task Chair",
+ "description": "Premium executive task chairs for professional workspaces"
+ },
+ {
+ "id": "visitors-chair",
+ "name": "Visitors Chair",
+ "description": "Comfortable chairs for visitors and guests"
+ },
+ {
+ "id": "canteen-chairs",
+ "name": "Canteen Chairs",
+ "description": "Durable chairs for dining and break areas"
+ },
+ {
+ "id": "soft-seating",
+ "name": "Soft Seating",
+ "description": "Comfortable soft seating solutions for lounge areas"
+ },
+ {
+ "id": "barstools",
+ "name": "Barstools",
+ "description": "Stylish barstools for reception and casual seating"
+ },
+ {
+ "id": "conference-chairs",
+ "name": "Conference Chairs",
+ "description": "Professional chairs for meeting rooms and conferences"
+ },
+ {
+ "id": "training-chairs",
+ "name": "Training Chairs",
+ "description": "Ergonomic chairs designed for training environments"
+ },
+ {
+ "id": "task-chairs",
+ "name": "Task Chairs",
+ "description": "Functional task chairs for daily office work"
},
{
"id": "storage",
@@ -1818,9 +3032,19 @@
"description": "Storage units, lockers, and organizational solutions"
},
{
- "id": "workspace",
- "name": "Workspace",
- "description": "Pods, phone booths, and collaborative spaces"
+ "id": "meeting-tables",
+ "name": "Meeting Tables",
+ "description": "Professional tables for meetings and conferences"
+ },
+ {
+ "id": "work-station",
+ "name": "Work Station",
+ "description": "Complete workstation solutions for office environments"
+ },
+ {
+ "id": "occasional-tables",
+ "name": "Occasional Tables",
+ "description": "Versatile occasional tables for various office needs"
}
],
"pagination": {
diff --git a/deploy-config.js b/deploy-config.js
deleted file mode 100644
index 0a606a2..0000000
--- a/deploy-config.js
+++ /dev/null
@@ -1,49 +0,0 @@
-/**
- * Deploy Configuration for KHY Admin Dashboard
- *
- * This file contains configuration for deploying from the admin repository
- * to the main KHY website repository.
- */
-
-module.exports = {
- // Default target paths (adjust these based on your setup)
- targets: {
- // If admin and main website are in the same parent directory
- sibling: "../khy_website",
-
- // If admin is in a subdirectory of the main website
- parent: "../",
-
- // Absolute path examples (uncomment and modify as needed)
- // absolute: "/path/to/your/khy_website",
- // absolute: "/Users/george/Documents/khy_website/khy_website",
- },
-
- // Which target to use by default
- defaultTarget: "sibling",
-
- // Files to copy from admin to main website
- filesToCopy: [
- {
- source: "data/products.json",
- target: "data/products.json",
- description: "Product catalog data",
- },
- {
- source: "assets/images",
- target: "assets/images",
- description: "Product images",
- isDirectory: true,
- },
- ],
-
- // Required files that must exist in target directory
- requiredTargetFiles: ["index.html", "data/products.json"],
-
- // Backup settings
- backup: {
- enabled: true,
- directory: "backups",
- timestampFormat: "YYYY-MM-DD_HH-mm-ss",
- },
-};
diff --git a/deploy.js b/deploy.js
deleted file mode 100644
index 2bc2557..0000000
--- a/deploy.js
+++ /dev/null
@@ -1,175 +0,0 @@
-#!/usr/bin/env node
-
-/**
- * Deploy Script for KHY Admin Dashboard
- *
- * This script copies the updated products.json and any other changes
- * from the admin directory to the main website directory.
- *
- * Usage: node deploy.js [target-directory]
- */
-
-const fs = require("fs");
-const path = require("path");
-const { exec } = require("child_process");
-const config = require("./deploy-config");
-
-// Configuration
-const ADMIN_DIR = __dirname;
-
-// Get target directory from command line or use default
-const TARGET_DIR = process.argv[2] || config.targets[config.defaultTarget];
-const TARGET_PATH = path.resolve(ADMIN_DIR, TARGET_DIR);
-
-console.log("KHY Admin Deploy Script");
-console.log("=======================");
-console.log(`Admin Directory: ${ADMIN_DIR}`);
-console.log(`Target Directory: ${TARGET_PATH}`);
-console.log("");
-
-// Files to copy from admin to main website (from config)
-const FILES_TO_COPY = config.filesToCopy;
-
-// Function to copy file or directory
-function copyFileOrDir(source, target, isDirectory = false) {
- const sourcePath = path.join(ADMIN_DIR, source);
- const targetPath = path.join(TARGET_PATH, target);
-
- try {
- if (isDirectory) {
- // Copy directory recursively
- if (fs.existsSync(targetPath)) {
- fs.rmSync(targetPath, { recursive: true, force: true });
- }
- fs.cpSync(sourcePath, targetPath, { recursive: true });
- } else {
- // Copy file
- const targetDir = path.dirname(targetPath);
- if (!fs.existsSync(targetDir)) {
- fs.mkdirSync(targetDir, { recursive: true });
- }
- fs.copyFileSync(sourcePath, targetPath);
- }
- return true;
- } catch (error) {
- console.error(`❌ Error copying ${source}:`, error.message);
- return false;
- }
-}
-
-// Function to create backup
-function createBackup() {
- const timestamp = new Date().toISOString().replace(/[:.]/g, "-");
- const backupDir = path.join(ADMIN_DIR, "backups", timestamp);
-
- try {
- fs.mkdirSync(backupDir, { recursive: true });
-
- // Backup current products.json from target
- const targetProducts = path.join(TARGET_PATH, "data/products.json");
- if (fs.existsSync(targetProducts)) {
- fs.copyFileSync(targetProducts, path.join(backupDir, "products.json"));
- console.log(`📦 Backup created: ${backupDir}`);
- return true;
- }
- } catch (error) {
- console.error("❌ Error creating backup:", error.message);
- }
- return false;
-}
-
-// Function to kill preview server
-function killPreviewServer() {
- return new Promise((resolve) => {
- console.log("Stopping preview server...");
- exec("node kill-server.js", (error, stdout, stderr) => {
- if (error) {
- console.log("No preview server running");
- } else {
- console.log("Preview server stopped");
- }
- resolve();
- });
- });
-}
-
-// Main deploy function
-async function deploy() {
- console.log("Checking target directory...");
-
- // Kill preview server first
- await killPreviewServer();
- console.log("");
-
- // Check if target directory exists
- if (!fs.existsSync(TARGET_PATH)) {
- console.error(`Target directory does not exist: ${TARGET_PATH}`);
- console.log("Make sure you're running this from the admin directory");
- console.log(
- "Or specify the correct target directory: node deploy.js /path/to/main/website"
- );
- process.exit(1);
- }
-
- // Check if target has the expected structure
- const expectedFiles = config.requiredTargetFiles;
- const missingFiles = expectedFiles.filter(
- (file) => !fs.existsSync(path.join(TARGET_PATH, file))
- );
-
- if (missingFiles.length > 0) {
- console.error(
- `Target directory missing required files: ${missingFiles.join(", ")}`
- );
- console.log(
- "Make sure you're pointing to the correct main website directory"
- );
- process.exit(1);
- }
-
- console.log("Target directory validated");
- console.log("");
-
- // Create backup
- console.log("Creating backup...");
- createBackup();
- console.log("");
-
- // Copy files
- console.log("Copying files...");
- let successCount = 0;
- let totalCount = FILES_TO_COPY.length;
-
- for (const file of FILES_TO_COPY) {
- console.log(`${file.description}...`);
- const success = copyFileOrDir(file.source, file.target, file.isDirectory);
- if (success) {
- console.log(` ${file.source} → ${file.target}`);
- successCount++;
- } else {
- console.log(` Failed to copy ${file.source}`);
- }
- }
-
- console.log("");
- console.log("Deploy Summary");
- console.log("==============");
- console.log(`Successfully copied: ${successCount}/${totalCount} files`);
-
- if (successCount === totalCount) {
- console.log("Deploy completed successfully!");
- console.log("");
- console.log("Your website has been updated with the latest changes.");
- console.log("You can now visit your main website to see the changes.");
- } else {
- console.log("Deploy completed with some errors.");
- console.log("Check the error messages above and try again.");
- process.exit(1);
- }
-}
-
-// Run deploy
-deploy().catch((error) => {
- console.error("Deploy failed:", error.message);
- process.exit(1);
-});
diff --git a/index.html b/index.html
deleted file mode 100644
index cbe5bb5..0000000
--- a/index.html
+++ /dev/null
@@ -1,1218 +0,0 @@
-
-
-
-
-
- KHY - Professional Services
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Redefining the Artistry of
- Furniture
-
-
-
-
-
-
- crafting spaces that feel like home
-
-
-
-
-
-
-
-
-
-
- At Khy, we design and furnish office environments where people
- thrive. From enterprise headquarters to coworking spaces, we
- create workspaces that balance function, comfort, and design
- excellence.
-
-
-
-
-
-
-
-
-
-
-
- Curated by Space
-
-
- Explore our collection of timeless, curated designs by room
-
-
-
-
-
-
-
-
-
-
-
- Lounge Areas
-
-
-
-
-
-
-
-
-
- Workstations
-
-
-
-
-
-
-
-
-
- Conference Rooms
-
-
-
-
-
-
-
-
-
-
-
-
- Our Story
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Rooted in Ghana.
- Inspired by beauty.
- Timeless by design.
-
-
-
- From our first collection to now, khy has remained dedicated to
- artistry, quality, and Ghanaian-inspired sophistication.
-
-
- Khy brings timeless, curated furniture and decor to offices that
- tell a story.
-
-
-
-
-
-
-
-
-
-
-
-
-
- At Khy, we provide end-to-end solutions: interior design, bespoke
- manufacturing, furniture supply, professional installation, and
- dedicated after-sales care — all under one roof.
-
-
-
-
-
-
-
-
-
-
-
- Our Products
-
-
- Browse our collections - designed to optimize space while
- balancing quality, aesthetics, and value
-