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

12 lines
257 B
TypeScript

import { Metadata } from 'next';
import Websites from './Websites';
import appMeta from '../../../../../app.json';
export default function () {
return <Websites />;
}
export const metadata: Metadata = {
title: `Website Settings | ${appMeta.name}`,
};