mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
19 lines
511 B
TypeScript
19 lines
511 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/",
|
|
}
|
|
]
|
|
}
|
|
]; |