umami/src/app/(main)/teams/page.tsx
2025-11-22 22:42:42 -08:00

10 lines
193 B
TypeScript

import type { Metadata } from 'next';
import { TeamsPage } from './TeamsPage';
export default function () {
return <TeamsPage />;
}
export const metadata: Metadata = {
title: 'Teams',
};