mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 17:15:37 +01:00
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
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',
|
|
};
|