Files

17 lines
598 B
TypeScript
Raw Permalink Normal View History

import type { Metadata } from 'next'
import { HomeClient } from './client'
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: '/',
},
}
export default function HomePage() {
return <HomeClient />
}