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

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

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