Files

17 lines
516 B
TypeScript
Raw Permalink Normal View History

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',
},
}
export default function GroupsPage() {
return <GroupsClient />
}