About Sable Energy

We're a young, dynamic team revolutionising solar technology. Our innovative spirit drives us to create the best Solar UPS systems, lithium batteries, and hybrid inverters. We’re not just making products – we're creating the future of power technology with innovative creativity and enthusiasm.

What We Manufacture

-Solar UPS systems

-Solar Lithium Batteries

-Solar Hybrid Inverters

Our Approach

We deliver reliable power solutions that work when you need them most. Our systems are designed to save you money, reduce downtime, and provide seamless energy management.

document.addEventListener('DOMContentLoaded', function() { // Battery Backup SVG icon const batteryBackupSVG = ` `; // Solar Kit SVG icon const solarKitSVG = ` `; // Find all category links const categoryLinks = document.querySelectorAll('.ec-category-links a, .category-links a, .ec-store-front-categories a, .ec-categories-menu a'); categoryLinks.forEach(link => { // Check link text to determine which image to add const linkText = link.textContent.trim().toLowerCase(); let svgContent = ''; if (linkText.includes('battery') || linkText.includes('ups') || linkText.includes('back-up')) { svgContent = batteryBackupSVG; } else if (linkText.includes('solar')) { svgContent = solarKitSVG; } if (svgContent) { // Create image container const imageContainer = document.createElement('div'); imageContainer.className = 'category-image-container'; imageContainer.innerHTML = svgContent; // Append container to link link.appendChild(imageContainer); } }); // If no category links are found, check if we need to create them if (categoryLinks.length === 0) { const storeContainer = document.querySelector('.ec-store, .ecwid, .ec-store-front'); if (storeContainer) { // Create category container const categoryContainer = document.createElement('div'); categoryContainer.className = 'ec-category-links'; // Create Battery Back-Up link const batteryLink = document.createElement('a'); batteryLink.href = '/#!/~/category/id=battery-backup'; batteryLink.textContent = 'Battery Back-Up (UPS)'; const batteryImageContainer = document.createElement('div'); batteryImageContainer.className = 'category-image-container'; batteryImageContainer.innerHTML = batteryBackupSVG; batteryLink.appendChild(batteryImageContainer); // Create Solar Kits link const solarLink = document.createElement('a'); solarLink.href = '/#!/~/category/id=solar-kits'; solarLink.textContent = 'Solar Kits'; const solarImageContainer = document.createElement('div'); solarImageContainer.className = 'category-image-container'; solarImageContainer.innerHTML = solarKitSVG; solarLink.appendChild(solarImageContainer); // Add links to container categoryContainer.appendChild(batteryLink);