aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/teams/page.tsx
blob: 7344f1509ce5e127787fdb785a54e772cad02ed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { Metadata } from 'next';
import { TeamsPage } from './TeamsPage';

export default function () {
  return <TeamsPage />;
}

export const metadata: Metadata = {
  title: 'Teams',
};