import React from "react"; import { ArrowRight, Zap, ShieldCheck, TrendingDown, Factory, Wind, Sun, Battery } from "lucide-react"; import { Link } from "react-router-dom"; import { Logo } from "../components/Logo"; import { SavingsCalculator } from "../components/SavingsCalculator"; import { SafeImage } from "../components/SafeImage"; import { motion } from "motion/react"; export const Home: React.FC = () => { return (
{/* Hero Section */}
South African Electricity Trading

Cheaper Renewable Electricity for South African Businesses

Source electricity from large-scale solar, wind and battery projects and reduce your electricity costs by 20% or more.

Request a Savings Estimate Book a Consultation
{/* Why Wiel Energy */}

Why Wiel Energy?

We bridge the gap between large-scale renewable energy producers and commercial electricity users, delivering value through market expertise.

{[ { icon: , title: "20%+ Cost Savings", desc: "Significantly cheaper electricity compared to traditional Eskom or municipal tariffs." }, { icon: , title: "Predictable Pricing", desc: "Hedge against volatile tariff hikes with long-term, predictable energy pricing options." }, { icon: , title: "Renewable Supply", desc: "Directly reduce your carbon footprint by sourcing from utility-scale solar and wind IPPs." } ].map((item, idx) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* How it Works Diagram */}

The Trading Ecosystem

How we deliver IPP-generated renewable energy directly to your business operations.

{/* Connection Line */}
{[ { icon: , label: "IPP Generator", desc: "Utility-scale solar, wind & BESS projects" }, { icon: , label: "Electricity Trader", desc: "Wiel Energy aggregates & structures supply" }, { icon: , label: "Network Delivery", desc: "Wheeling through Eskom or Municipal grids" }, { icon: , label: "Your Business", desc: "Lower costs & sustainable energy supply" } ].map((step, idx) => (
{step.icon}

{step.label}

{step.desc}

))}
{/* Calculator Section */}

Calculate Your Potential Savings

Use our estimator to see how much your business could save by switching to traded renewable electricity.

{/* Renewable Sources */}

Diverse Renewable Energy Sources

We partner with leading Independent Power Producers to provide a balanced energy mix that suits your operational profile.

{[ { icon: , title: "Utility-Scale Solar", desc: "High-yield generation during peak business hours." }, { icon: , title: "Utility-Scale Wind", desc: "Consistent generation often peaking during evening hours." }, { icon: , title: "Solar + BESS", desc: "Stored energy for dispatch during peak demand periods." } ].map((source, idx) => (
{source.icon}

{source.title}

{source.desc}

))}
Explore Our Solutions
Wind turbines
{/* CTA Section */}

Ready to lower your energy costs?

Join the growing number of South African businesses securing their energy future with Wiel Energy.

Request a Savings Estimate Book a Consultation
); };