2026-06-15 20:18:36 +02:00
|
|
|
|
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 (1930–2026)',
|
|
|
|
|
|
description: 'Every FIFA World Cup from Uruguay 1930 to USA/Canada/Mexico 2026.',
|
|
|
|
|
|
url: '/history',
|
|
|
|
|
|
},
|
2026-06-14 15:36:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default function HistoryPage() {
|
2026-06-15 20:18:36 +02:00
|
|
|
|
return <HistoryClient />
|
2026-06-14 15:36:44 +02:00
|
|
|
|
}
|