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

18 lines
422 B
TypeScript

import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
import WebsitesBrowse from './WebsitesBrowse';
import { Metadata } from 'next';
import appMeta from '../../../../app.json';
export default function WebsitesPage() {
return (
<>
<WebsitesHeader showActions={false} />
<WebsitesBrowse />
</>
);
}
export const metadata: Metadata = {
title: `Websites | ${appMeta.name}`,
};