2026-06-15 20:18:36 +02:00
|
|
|
import type { Metadata } from 'next'
|
|
|
|
|
import { GroupsClient } from './client'
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: '2026 Group Stage',
|
|
|
|
|
description: 'Live standings for all 12 groups at the 2026 FIFA World Cup — results, upcoming fixtures and qualification picture.',
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: '2026 FIFA World Cup Group Stage',
|
|
|
|
|
description: 'Live standings for all 12 groups at the 2026 FIFA World Cup.',
|
|
|
|
|
url: '/groups',
|
|
|
|
|
},
|
2026-06-15 19:47:52 +02:00
|
|
|
}
|
|
|
|
|
|
2026-06-14 15:36:44 +02:00
|
|
|
export default function GroupsPage() {
|
2026-06-15 20:18:36 +02:00
|
|
|
return <GroupsClient />
|
2026-06-14 15:36:44 +02:00
|
|
|
}
|