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

11 lines
196 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
import WebsitesPage from './WebsitesPage';
2023-10-08 05:42:49 +00:00
import { Metadata } from 'next';
2024-06-01 21:06:17 +00:00
export default function () {
return <WebsitesPage />;
2023-10-08 05:42:49 +00:00
}
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Websites',
2023-10-08 05:42:49 +00:00
};