website: create website
This commit introduces a the Kilo website. It is generated with Docusaurus and can be deployed with standard services like Netlify. Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
This commit is contained in:
77
website/docusaurus.config.js
Normal file
77
website/docusaurus.config.js
Normal file
@@ -0,0 +1,77 @@
|
||||
module.exports = {
|
||||
title: 'Kilo',
|
||||
tagline: 'a multi-cloud network overlay built on WireGuard and designed for Kubernetes',
|
||||
url: 'https://kilo.squat.ai',
|
||||
baseUrl: '/',
|
||||
favicon: 'img/favicon.ico',
|
||||
organizationName: 'squat',
|
||||
projectName: 'kilo',
|
||||
themeConfig: {
|
||||
navbar: {
|
||||
title: 'Kilo',
|
||||
logo: {
|
||||
alt: 'Kilo',
|
||||
src: 'img/kilo.svg',
|
||||
},
|
||||
links: [
|
||||
{
|
||||
to: 'docs/introduction',
|
||||
activeBasePath: 'docs',
|
||||
label: 'Docs',
|
||||
position: 'left',
|
||||
},
|
||||
{
|
||||
href: 'https://github.com/squat/kilo',
|
||||
label: 'GitHub',
|
||||
position: 'right',
|
||||
},
|
||||
],
|
||||
},
|
||||
footer: {
|
||||
style: 'dark',
|
||||
links: [
|
||||
{
|
||||
title: 'Docs',
|
||||
items: [
|
||||
{
|
||||
label: 'Introduction',
|
||||
to: 'docs/introduction',
|
||||
},
|
||||
{
|
||||
label: 'Topology',
|
||||
to: 'docs/topology',
|
||||
},
|
||||
{
|
||||
label: 'VPN',
|
||||
to: 'docs/vpn',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Social',
|
||||
items: [
|
||||
{
|
||||
label: 'GitHub',
|
||||
href: 'https://github.com/squat/kilo',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
presets: [
|
||||
[
|
||||
'@docusaurus/preset-classic',
|
||||
{
|
||||
docs: {
|
||||
sidebarPath: require.resolve('./sidebars.js'),
|
||||
editUrl:
|
||||
'https://github.com/squat/kilo/edit/master/',
|
||||
},
|
||||
theme: {
|
||||
customCss: require.resolve('./src/css/custom.css'),
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user