Welcome to Potentia Engineering Solutions & Potentia Solar Systems

We are coming soon.....

Dr.Azhar Iqbal Sabri CEO +92-321-5469244
M. Shahryar Azhar MD +92-300-0074819

Description: Description: C:\Users\Mc\Downloads\Documents\web.jpg

import React, { useState, useEffect } from 'react'; // Main App component const App = () => { const [activeSection, setActiveSection] = useState('home'); // Function to scroll to a section smoothly const scrollToSection = (sectionId) => { const section = document.getElementById(sectionId); if (section) { section.scrollIntoView({ behavior: 'smooth' }); setActiveSection(sectionId); } }; // Effect to update active section based on scroll position useEffect(() => { const handleScroll = () => { const sections = ['home', 'about', 'services', 'contact']; let currentActive = 'home'; for (let i = sections.length - 1; i >= 0; i--) { const section = document.getElementById(sections[i]); if (section) { const rect = section.getBoundingClientRect(); if (rect.top <= window.innerHeight / 2 && rect.bottom >= window.innerHeight / 2) { currentActive = sections[i]; break; } } } setActiveSection(currentActive); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); return (
{/* Header/Navigation */}
{/* Hero Section */}

Powering Your Future with Sustainable Solar Solutions

Harness the sun's energy for a brighter, cleaner, and more efficient tomorrow.

{/* About Us Section */}

About Potentia Solar Systems

Solar Panel Installation

At Potentia Solar Systems, we are dedicated to revolutionizing energy consumption by providing cutting-edge solar solutions for homes and businesses. With years of expertise in the renewable energy sector, we pride ourselves on delivering high-quality, reliable, and cost-effective solar installations tailored to your specific needs.

Our mission is to empower individuals and organizations to embrace sustainable energy, reduce their carbon footprint, and achieve energy independence. We believe in a future where clean energy is accessible to everyone, and we are committed to making that vision a reality.

From initial consultation and custom design to seamless installation and ongoing support, our team of certified professionals ensures a smooth and efficient transition to solar power.

{/* Services Section */}

Our Services

{/* Service Card 1 */}

Residential Solar Installation

Custom-designed solar panel systems for homes, ensuring maximum energy efficiency and savings on your electricity bills.

{/* Service Card 2 */}

Commercial Solar Solutions

Scalable solar solutions for businesses of all sizes, reducing operational costs and promoting corporate sustainability.

{/* Service Card 3 */}

Maintenance & Support

Comprehensive maintenance plans and dedicated support to ensure your solar system operates at peak performance.

{/* Contact Section */}

Contact Us

Ready to make the switch to solar? Have questions about our services? We'd love to hear from you! Fill out the form below or reach out to us directly.

P-19 Chenab Market Susan Road Faisalabad Pakistan

+92 321 5469244

info@potentia.pk

{/* Footer */}
); }; export default App;