blob: cefaf8096f78cc58cef4dba622aa8dc64fbff6e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { Metadata } from 'next';
import { WebsitesPage } from './WebsitesPage';
export default function () {
return <WebsitesPage />;
}
export const metadata: Metadata = {
title: 'Websites',
};
|