umami/src/app/(main)/websites/page.tsx
2025-02-13 22:53:25 -08:00

10 lines
200 B
TypeScript

import { WebsitesPage } from './WebsitesPage';
import { Metadata } from 'next';
export default function () {
return <WebsitesPage />;
}
export const metadata: Metadata = {
title: 'Websites',
};