Files

13 lines
329 B
TypeScript
Raw Permalink Normal View History

import type { Metadata } from 'next'
import { SearchClient } from './client'
export const metadata: Metadata = {
title: 'Search',
description: 'Search for teams, players, tournaments and stadiums across all FIFA World Cups.',
robots: { index: false },
}
export default function SearchPage() {
return <SearchClient />
}