mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
24 lines
710 B
TypeScript
24 lines
710 B
TypeScript
import type { NavSection } from "./nav";
|
|
|
|
export default <NavSection[]>[
|
|
{
|
|
title: "_tools._forUsers.title",
|
|
items: [
|
|
{
|
|
i18n: "_mfmPlayground.title",
|
|
description: "_mfmPlayground.description",
|
|
to: "/tools/mfm-playground/",
|
|
},
|
|
{
|
|
i18n: "_aidConverter.title",
|
|
description: "_aidConverter.description",
|
|
to: "/tools/aid-converter/",
|
|
},
|
|
{
|
|
i18n: "_shareLinkGenerator.title",
|
|
description: "_shareLinkGenerator.description",
|
|
to: "/tools/share-link-generator/",
|
|
},
|
|
],
|
|
},
|
|
]; |