mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
17 lines
368 B
TypeScript
17 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',
|
|
};
|