Refactored teams components.

This commit is contained in:
Mike Cao 2023-10-07 22:42:49 -07:00
parent 6253d55790
commit 8b48130d5f
18 changed files with 75 additions and 44 deletions

View file

@ -0,0 +1,16 @@
import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
import WebsitesBrowse from './WebsitesBrowse';
import { Metadata } from 'next';
export default function WebsitesPage() {
return (
<>
<WebsitesHeader showActions={false} />
<WebsitesBrowse />
</>
);
}
export const metadata: Metadata = {
title: 'Websites | umami',
};