Skip to content

Commit 96eb1f1

Browse files
feat(webui): redesign the footer element (#287)
* redesigning footer element * adding license * Update asf_logo.svg adding license
1 parent bf1ba47 commit 96eb1f1

File tree

6 files changed

+431
-9
lines changed

6 files changed

+431
-9
lines changed

webui/config.ts

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
20+
import { footerConfigType } from "@/app/lib/definitions";
21+
22+
export const footerConfig: footerConfigType = {
23+
links: [
24+
{
25+
title: 'Docs',
26+
items: [
27+
{
28+
label: 'Getting started',
29+
to: '/docs/getting-started',
30+
},
31+
{
32+
label: 'Supported commands',
33+
to: '/docs/supported-commands',
34+
},
35+
{
36+
label: 'How to contribute',
37+
to: '/community/contributing',
38+
}
39+
],
40+
},
41+
{
42+
title: 'Community',
43+
items: [
44+
{
45+
label: 'Zulip',
46+
href: 'https://kvrocks.zulipchat.com/',
47+
},
48+
{
49+
label: 'Issue Tracker',
50+
href: 'https://github.com/apache/kvrocks-controller/issues',
51+
},
52+
{
53+
label: 'Mailing list',
54+
href: 'https://lists.apache.org/list.html?dev@kvrocks.apache.org',
55+
},
56+
],
57+
},
58+
{
59+
title: 'Repositories',
60+
items: [
61+
{
62+
label: 'Kvrocks',
63+
href: 'https://github.com/apache/kvrocks',
64+
},
65+
{
66+
label: 'Website',
67+
href: 'https://github.com/apache/kvrocks-website',
68+
},
69+
{
70+
label: 'Controller',
71+
href: 'https://github.com/apache/kvrocks-controller',
72+
}
73+
]
74+
}
75+
],
76+
logo: {
77+
height: 128,
78+
width: 320,
79+
alt: 'Apache logo',
80+
src: '/asf_logo.svg',
81+
href: 'https://www.apache.org/'
82+
},
83+
copyright: `The Apache Software Foundation. Apache Kvrocks, Kvrocks, and its feather logo are trademarks of The Apache Software Foundation. Redis and its cube logo are registered trademarks of Redis Ltd.`,
84+
};

0 commit comments

Comments
 (0)