import { Suspense } from 'react'; import { ChartSkeleton } from '@/components/charts/chart-skeleton.js'; import type { Metadata } from 'next'; import { DemandChartSection } from './_sections/demand-chart-section.js'; export const metadata: Metadata = { title: 'Demand Analysis | Energy & AI Dashboard', description: 'Regional electricity demand growth, peak tracking, and datacenter load impact', }; export default function DemandPage() { return (

Demand Analysis

Regional demand growth trends, peak demand tracking, and estimated datacenter load as a percentage of regional demand.

}>
); }