mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
10 lines
193 B
TypeScript
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',
|
|
};
|