Files

17 lines
530 B
TypeScript
Raw Permalink Normal View History

import type { Metadata } from 'next'
import { HistoryClient } from './client'
export const metadata: Metadata = {
title: 'Tournament History',
description: 'Every FIFA World Cup from Uruguay 1930 to USA/Canada/Mexico 2026 — hosts, winners, and key statistics.',
openGraph: {
title: 'FIFA World Cup Tournament History (19302026)',
description: 'Every FIFA World Cup from Uruguay 1930 to USA/Canada/Mexico 2026.',
url: '/history',
},
}
export default function HistoryPage() {
return <HistoryClient />
}