mernmail-website/constants/docLinks.js

50 lines
858 B
JavaScript
Raw Permalink Normal View History

2024-11-07 18:06:11 +01:00
export default [
{
href: "/docs",
target: "_self",
2024-11-08 14:40:18 +01:00
label: "Welcome to the MERNMail documentation!"
},
{
href: "/docs/getting-started",
target: "_self",
label: "Getting started"
},
{
href: "/docs/demo",
target: "_self",
label: "Official demo"
},
{
href: "/docs/features",
target: "_self",
label: "Features"
},
{
href: "/docs/configuration",
target: "_self",
label: "Configuration"
},
{
href: "/docs/usage",
target: "_self",
label: "Usage"
},
{
href: "/docs/deployment",
target: "_self",
label: "Deployment"
},
{
href: "/docs/deployment/svrjs",
target: "_self",
sub: true,
label: "Deploy with SVR.JS"
},
{
href: "/docs/deployment/pm2-nginx",
target: "_self",
sub: true,
label: "Deploy with PM2 + NGINX"
2024-11-07 18:06:11 +01:00
}
];