import React from "react"; import { motion } from "framer-motion"; const ICON_PATHS = { arrowRight: "M5 12h14M13 5l7 7-7 7", shieldCheck: "M12 3l7 4v5c0 5-3.5 8.5-7 9-3.5-.5-7-4-7-9V7l7-4z M9 12l2 2 4-5", zap: "M13 2L4 14h7l-1 8 10-13h-7l0-7z", globe: "M12 2a10 10 0 100 20 10 10 0 000-20z M2 12h20 M12 2c3 3 4 6.5 4 10s-1 7-4 10 M12 2c-3 3-4 6.5-4 10s1 7 4 10", fileCheck: "M7 3h7l5 5v13H7V3z M14 3v5h5 M9 15l2 2 5-6", network: "M6 6h.01 M18 6h.01 M12 18h.01 M6 6l12 0 M6 6l6 12 M18 6l-6 12", building: "M4 21V5a2 2 0 012-2h9a2 2 0 012 2v16 M3 21h18 M8 7h2 M8 11h2 M8 15h2 M14 7h2 M14 11h2 M14 15h2", chevronRight: "M9 18l6-6-6-6", }; const TEST_CASES = [ { name: "hasMinimumProjectSize", value: "50MW+", expected: "50MW+" }, { name: "hasCoreStructure", value: "PPA", expected: "PPA" }, { name: "hasEnoughTargetSegments", value: 6, expected: 6 }, { name: "usesProvidedLogo", value: "/mnt/data/logo.png", expected: "/mnt/data/logo.png" }, { name: "noPublicEmail", value: false, expected: false }, { name: "noQuestionnaireDownload", value: false, expected: false }, ]; export function runHomepageSanityTests() { return TEST_CASES.map((test) => ({ ...test, passed: test.value === test.expected, })); } const Icon = ({ name, size = 22, className = "", fill = "none" }) => ( ); const Button = ({ children, variant = "primary", className = "" }) => { const base = "inline-flex items-center justify-center rounded-full px-5 py-3 text-sm font-semibold transition-all"; const styles = variant === "primary" ? "bg-white text-slate-950 hover:bg-slate-200 shadow-lg shadow-black/20" : "border border-white/20 text-white hover:bg-white/10"; return ; }; const SectionLabel = ({ children }) => (
{children}
); const Stat = ({ value, label }) => (
{value}
{label}
); const Card = ({ icon, title, children }) => (

{title}

{children}

); const Step = ({ number, title, children }) => (
{number}

{title}

{children}

); const readinessItems = [ ["Demand profile", "50MW industrial load", "92%"], ["Commercial frame", "Target price / kWh defined", "78%"], ["Site viability", "Location and interconnect review", "64%"], ["Decision access", "Buyer-side sponsor identified", "84%"], ]; const targetSegments = [ "Mining operations", "Island and remote grids", "Industrial parks", "Data and critical infrastructure", "Government-backed energy programs", "Large private offtakers", ]; export default function AgeraEnergyGroupHome() { return (
Agera Energy Group
Power projects without the procurement fog

Structured access to next-generation baseload energy.

Agera Energy Group originates, qualifies and coordinates large-scale energy opportunities for industrial, mining and infrastructure customers seeking long-term power purchase solutions.

Project readiness
Indicative qualification dashboard
Active review
{readinessItems.map(([title, detail, pct]) => (
{title} {pct}
{detail}
))}

Agera keeps origination, qualification and vendor-side coordination aligned so serious buyers can move from indication to direct technical and commercial discussions.

What Agera does

We turn early interest into bankable project conversations.

The hardest part of emerging energy deployment is not only the technology. It is filtering real demand, documenting the commercial frame and keeping the right parties aligned before engineering resources are consumed.

We identify industrial users, mines, infrastructure owners and government-linked opportunities with material power demand. We capture the indicative load, location, current power cost, target tariff and decision structure before deeper engagement. We help translate early buyer intent into a practical starting scope for technical and commercial evaluation. We keep buyer, license holder and technology provider aligned through the transition from opportunity to PPA discussion.
Target opportunities

Best suited for power-intensive sites.

Agera focuses on situations where electricity is strategic: high-cost grids, remote assets, constrained infrastructure or large users seeking long-term certainty.

{targetSegments.map((item) => (
{item}
))}
Engagement path

Simple enough to start. Serious enough to matter.

The customer defines the indicative project size, current power situation, target commercial metrics and location-specific constraints. Agera reviews the opportunity for seriousness, decision access and fit before deeper technical resources are engaged. Qualified opportunities transition into structured discussions with the relevant technology and delivery parties, with Agera remaining copied and aligned.
Start here

Have a serious power demand or project lead?

Share the location, expected load, current cost of power, preferred PPA structure and decision timeline. Agera will determine whether the opportunity is ready for a structured review.

Next step

Prepare the opportunity profile

The strongest first submission includes location, expected load, current energy cost, target tariff range, preferred PPA term and the buyer-side decision process.

Agera will route qualified opportunities through the appropriate commercial review path.
); }