Skip to content

Commit bcded11

Browse files
committed
Update footer.
1 parent 3980a8f commit bcded11

1 file changed

Lines changed: 137 additions & 4 deletions

File tree

docusaurus.config.js

Lines changed: 137 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,150 @@ const config = {
5555
],
5656
},
5757
footer: {
58-
style: 'dark',
58+
style: 'light',
5959
links: [
6060
{
61-
title: 'More',
61+
title: 'Features',
6262
items: [
6363
{
64-
label: 'GitHub',
65-
href: 'https://github.com/ServiceStack/ServiceStack',
64+
label: 'Blazor WASM',
65+
to: 'https://servicestack.net/blazor',
6666
},
67+
{
68+
label: 'AutoQuery',
69+
to: 'https://servicestack.net/autoquery',
70+
},
71+
{
72+
label: 'ServiceStack Reference',
73+
to: 'https://servicestack.net/service-reference',
74+
},
75+
{
76+
label: 'Litestream',
77+
to: 'https://servicestack.net/litestream',
78+
},
79+
{
80+
label: 'OrmLite',
81+
to: 'https://servicestack.net/ormlite',
82+
},
83+
{
84+
label: 'Redis',
85+
to: 'https://servicestack.net/redis',
86+
},
87+
{
88+
label: 'Locode',
89+
to: 'https://www.locode.dev/',
90+
},
91+
{
92+
label: 'Jamstack',
93+
to: 'Jamstack',
94+
},
95+
96+
],
97+
},
98+
{
99+
title: 'Resources',
100+
items: [
101+
{
102+
label: 'Framework Docs',
103+
href: 'https://docs.servicestack.net',
104+
},
105+
{
106+
label: 'Customer Forums',
107+
to: 'https://forums.servicestack.net',
108+
},
109+
{
110+
label: 'ServiceStack.Redis',
111+
to: 'https://docs.servicestack.net/redis',
112+
},
113+
{
114+
label: 'ServiceStack.OrmLite',
115+
to: 'https://docs.servicestack.net/ormlite',
116+
},
117+
{
118+
label: 'ServiceStack.Text',
119+
to: 'https://docs.servicestack.net/text',
120+
},
121+
{
122+
label: 'ServiceStack.Aws',
123+
to: 'https://docs.servicestack.net/aws',
124+
},
125+
{
126+
label: 'Live Demos',
127+
to: 'https://github.com/NetCoreApps/LiveDemos',
128+
},
129+
{
130+
label: 'Customer Forums',
131+
to: 'https://forums.servicestack.net/',
132+
},
133+
{
134+
label: 'Blog',
135+
to: 'https://servicestack.net/blog',
136+
}
137+
],
138+
},
139+
{
140+
title: 'Learn',
141+
items: [
142+
{
143+
label: 'Why ServiceStack',
144+
to: 'https://docs.servicestack.net/why-servicestack',
145+
},
146+
{
147+
label: 'Architecture',
148+
to: 'https://docs.servicestack.net/architecture-overview',
149+
},
150+
{
151+
label: 'Explore ServiceStack',
152+
href: 'https://docs.servicestack.net/explore-servicestack',
153+
},
154+
{
155+
label: 'API First Development',
156+
href: 'https://docs.servicestack.net/api-first-development',
157+
},
158+
{
159+
label: 'The Simple POCO Life',
160+
href: 'https://docs.servicestack.net/service-complexity-and-dto-roles',
161+
},
162+
{
163+
label: 'Training Services',
164+
href: 'https://servicestack.net/training',
165+
}
166+
],
167+
},
168+
{
169+
title: 'About',
170+
// Please don't remove the privacy and terms, it's a legal
171+
// requirement.
172+
items: [
173+
{
174+
label: 'Support',
175+
href: 'https://servicestack.net/support',
176+
},
177+
{
178+
label: 'What\'s New',
179+
href: 'https://servicestack.net/whatsnew',
180+
},
181+
{
182+
label: 'Contact Us',
183+
href: 'https://servicestack.net/#contact',
184+
},
185+
{
186+
label: 'Privacy',
187+
href: 'https://servicestack.net/privacy',
188+
},
189+
{
190+
label: 'Terms',
191+
href: 'https://servicestack.net/terms',
192+
}
67193
],
68194
},
69195
],
196+
logo: {
197+
alt: 'ServiceStack Logo',
198+
src: '/img/servicestack.svg',
199+
href: 'https://servicestack.net',
200+
},
201+
copyright: `Copyright © ${new Date().getFullYear()} ServiceStack, Inc. Built with Docusaurus.`,
70202
},
71203
prism: {
72204
theme: lightCodeTheme,
@@ -94,6 +226,7 @@ const config = {
94226
contextualSearch: false,
95227
}
96228
})
229+
97230
};
98231

99232
module.exports = config;

0 commit comments

Comments
 (0)