2026-06-15 20:18:36 +02:00
|
|
|
import type { Metadata } from 'next'
|
|
|
|
|
import { HomeClient } from './client'
|
2026-06-14 15:36:44 +02:00
|
|
|
|
2026-06-15 20:18:36 +02:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'World Cup 2026 — Live Scores, Groups & Stats',
|
|
|
|
|
description: 'Live scores, group standings, upcoming fixtures and all-time top scorers for the 2026 FIFA World Cup in USA, Canada & Mexico.',
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: 'World Cup 2026 — Live Scores, Groups & Stats',
|
|
|
|
|
description: 'Live scores, group standings, upcoming fixtures and all-time top scorers for the 2026 FIFA World Cup.',
|
|
|
|
|
url: '/',
|
|
|
|
|
},
|
2026-06-14 15:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function HomePage() {
|
2026-06-15 20:18:36 +02:00
|
|
|
return <HomeClient />
|
2026-06-14 15:36:44 +02:00
|
|
|
}
|