Updated the public documentation site with improved layout and accessibility, including new sections for client integration and admin guides. Enhanced API queries by adding 'active_only' and 'group_by' parameters for better data filtering in risk management. Refined UI components for agent management, ensuring consistent styling and improved user experience across the application. Added localization support for new documentation content in English and Nepali.
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
export type DocsNavItem = {
|
|
href: string;
|
|
titleKey: string;
|
|
};
|
|
|
|
export type DocsNavGroup = {
|
|
titleKey: string;
|
|
items: DocsNavItem[];
|
|
};
|
|
|
|
export const DOCS_NAV_GROUPS: DocsNavGroup[] = [
|
|
{
|
|
titleKey: "nav.overview",
|
|
items: [
|
|
{ href: "/docs/integration", titleKey: "nav.home" },
|
|
{ href: "/docs/integration/delivery", titleKey: "nav.delivery" },
|
|
{ href: "/docs/integration/quickstart", titleKey: "nav.quickstart" },
|
|
{ href: "/docs/integration/fundamentals", titleKey: "nav.fundamentals" },
|
|
{ href: "/docs/integration/preparation", titleKey: "nav.setup" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "nav.api",
|
|
items: [
|
|
{ href: "/docs/integration/sso", titleKey: "nav.sso" },
|
|
{ href: "/docs/integration/iframe", titleKey: "nav.iframe" },
|
|
{ href: "/docs/integration/wallet", titleKey: "nav.wallet" },
|
|
{ href: "/docs/integration/transfer", titleKey: "nav.transfer" },
|
|
{ href: "/docs/integration/errors", titleKey: "nav.errors" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "nav.ship",
|
|
items: [
|
|
{ href: "/docs/integration/troubleshooting", titleKey: "nav.troubleshooting" },
|
|
{ href: "/docs/integration/go-live", titleKey: "nav.golive" },
|
|
],
|
|
},
|
|
];
|