umami/src/app/(main)/websites/page.tsx

17 lines
446 B
TypeScript
Raw Normal View History

2023-10-08 05:42:49 +00:00
import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
import WebsitesBrowse from './WebsitesBrowse';
import { Metadata } from 'next';
2024-02-03 01:49:17 +00:00
export default function WebsitesPage({ params: { teamId, userId } }) {
2023-10-08 05:42:49 +00:00
return (
<>
2024-02-04 07:19:29 +00:00
<WebsitesHeader teamId={teamId} showActions={false} />
2024-02-03 01:49:17 +00:00
<WebsitesBrowse teamId={teamId} userId={userId} />
2023-10-08 05:42:49 +00:00
</>
);
}
export const metadata: Metadata = {
2024-02-03 01:49:17 +00:00
title: 'Websites | Umami',
2023-10-08 05:42:49 +00:00
};