You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
import { metadataModule } from '@/server/metadata';
|
|
import { translation } from '@/server/translation';
|
|
|
|
export const generateMetadata = async () => {
|
|
const { t } = await translation('setting');
|
|
return metadataModule.generate({
|
|
description: t('header.desc'),
|
|
title: t('tab.szr'),
|
|
url: '/settings/szr',
|
|
});
|
|
};
|
|
export { default } from './index';
|