-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexplainer.config.ts
More file actions
87 lines (86 loc) · 2.19 KB
/
explainer.config.ts
File metadata and controls
87 lines (86 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { defineExplainerConfig } from "@/lib/utils";
export default defineExplainerConfig({
meta: {
title: "FerrisKey",
description:
"FerrisKey is an open-source IAM (Identity and Access Management) solution designed for modern cloud-native environments. ",
thumbnail: "/logo_ferriskey.png",
},
urls: {
github: "https://github.com/ferriskey/ferriskey",
getStarted: "/docs/welcome/introduction",
documentation: "/docs/welcome/installation",
},
docs: {
welcome: {
icon: "lucide:pencil-line",
label: "Welcome",
href: "/docs/welcome/introduction",
baseUrl: "/docs/welcome",
},
concepts: {
icon: "lucide:book",
label: "Concepts",
href: "/docs/concepts/overview",
baseUrl: "/docs/concepts",
},
modules: {
icon: "lucide:code",
label: "Modules",
href: "/docs/modules/trident",
baseUrl: "/docs/modules",
},
tutorials: {
icon: "lucide:graduation-cap",
label: "Tutorials",
href: "/docs/tutorials/deploy-on-k8s",
baseUrl: "/docs/tutorials",
},
// reference: {
// icon: "lucide:braces",
// label: "Reference",
// href: "/docs/reference/helm-chart",
// baseUrl: "/docs/reference",
// },
},
blog: {
defaults: {
thumbnail: "https://placehold.co/1200x630",
},
authors: {
leadcode_dev: {
name: "LeadcodeDev",
avatar: "https://avatars.githubusercontent.com/u/8946317?v=4",
href: "https://github.com/LeadcodeDev",
},
nathael: {
name: "Nathael",
avatar: "https://avatars.githubusercontent.com/u/64804778?v=4",
href: "https://github.com/nathaelb",
},
},
},
navbar: [
{
label: "Documentation",
href: "https://docs.ferriskey.rs",
},
{
label: "Modules",
items: [
{
label: "Trident",
description:
"Advanced multi-factor authentication and policy engine—secure every login and critical action.",
href: "/products/trident",
},
],
},
],
social: {
github: {
href: "https://github.com/ferriskey/ferriskey",
icon: "mdi:github",
},
},
});