2026-06-15 20:18:36 +02:00
|
|
|
import type { Metadata } from 'next'
|
|
|
|
|
import { SearchClient } from './client'
|
2026-06-14 15:36:44 +02:00
|
|
|
|
2026-06-15 20:18:36 +02:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'Search',
|
|
|
|
|
description: 'Search for teams, players, tournaments and stadiums across all FIFA World Cups.',
|
|
|
|
|
robots: { index: false },
|
2026-06-14 15:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function SearchPage() {
|
2026-06-15 20:18:36 +02:00
|
|
|
return <SearchClient />
|
2026-06-14 15:36:44 +02:00
|
|
|
}
|