umami/src/app/(main)/websites/page.tsx
2024-06-01 14:06:17 -07:00

10 lines
196 B
TypeScript

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