umami/src/app/(main)/links/page.tsx
2025-11-22 22:42:42 -08:00

10 lines
193 B
TypeScript

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