aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/links/page.tsx
blob: 24c9c18e3e2079626f87a84ce559e0da059e2536 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { Metadata } from 'next';
import { LinksPage } from './LinksPage';

export default function () {
  return <LinksPage />;
}

export const metadata: Metadata = {
  title: 'Links',
};