import { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'Pro Motocross Championship Standings 2026',
  description: 'Current Lucas Oil AMA Pro Motocross Championship standings for 450MX and 250MX classes. View rider points, rankings, and championship positions updated after each national.',
  keywords: ['motocross standings', '450MX standings', '250MX standings', 'pro motocross points', 'rider rankings', 'motocross points', 'AMA Pro Motocross standings 2026'],
  openGraph: {
    title: 'Pro Motocross Championship Standings 2026',
    description: 'Live Pro Motocross championship standings for 450MX and 250MX classes.',
    type: 'website',
    url: '/mx-standings',
  },
  twitter: {
    title: 'Pro Motocross Championship Standings 2026',
    description: 'Live Pro Motocross championship standings for 450MX and 250MX classes.',
  },
  alternates: {
    canonical: '/mx-standings',
  },
};

export default function MxStandingsLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return children;
}
