2023-09-26 14:57:26 +02:00
|
|
|
import type { NavSection } from "./nav";
|
|
|
|
|
|
|
|
export default <NavSection[]>[
|
|
|
|
{
|
|
|
|
title: "_tools._forUsers.title",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
i18n: "_mfmPlayground.title",
|
|
|
|
description: "_mfmPlayground.description",
|
|
|
|
to: "/tools/mfm-playground/",
|
2023-10-28 16:27:13 +02:00
|
|
|
},
|
2023-12-24 13:33:47 +01:00
|
|
|
{
|
|
|
|
i18n: "_avatarDecorationPreview.title",
|
|
|
|
description: "_avatarDecorationPreview.description",
|
|
|
|
to: "/tools/avatar-decoration-preview/",
|
|
|
|
},
|
2023-10-28 16:27:13 +02:00
|
|
|
{
|
2024-01-21 09:39:47 +01:00
|
|
|
i18n: "_customEmojiPreview.title",
|
|
|
|
description: "_customEmojiPreview.description",
|
|
|
|
to: "/tools/custom-emoji-preview/",
|
2023-12-04 14:47:06 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
i18n: "_shareLinkGenerator.title",
|
|
|
|
description: "_shareLinkGenerator.description",
|
|
|
|
to: "/tools/share-link-generator/",
|
|
|
|
},
|
2024-03-25 11:24:24 +01:00
|
|
|
{
|
|
|
|
i18n: '_identiconGenerator.title',
|
|
|
|
description: '_identiconGenerator.description',
|
|
|
|
to: '/tools/identicon-generator/',
|
|
|
|
},
|
2023-12-04 14:47:06 +01:00
|
|
|
],
|
|
|
|
},
|
2024-01-21 09:39:47 +01:00
|
|
|
{
|
|
|
|
title: "_tools._forAdmin.title",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
i18n: "_aidConverter.title",
|
|
|
|
description: "_aidConverter.description",
|
|
|
|
to: "/tools/aid-converter/",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
2023-09-26 14:57:26 +02:00
|
|
|
];
|