Allow getting team websites.

This commit is contained in:
Mike Cao 2025-09-12 08:21:29 -07:00
parent e610de383a
commit 433ce98719
10 changed files with 79 additions and 56 deletions

View file

@ -0,0 +1,10 @@
import { Metadata } from 'next';
import { DashboardPage } from './DashboardPage';
export default async function () {
return <DashboardPage />;
}
export const metadata: Metadata = {
title: 'Dashboard',
};