2024-03-17 03:25:35 +01:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2024-03-17 04:15:56 +01:00
|
|
|
site: 'https://docs.web3privacy.info',
|
2024-03-17 03:25:35 +01:00
|
|
|
integrations: [
|
|
|
|
starlight({
|
|
|
|
title: 'Web3Privacy Now Docs',
|
|
|
|
social: {
|
|
|
|
github: 'https://github.com/web3privacy',
|
|
|
|
twitter: 'https://twitter.com/web3privacy',
|
|
|
|
},
|
|
|
|
logo: {
|
2024-03-17 06:26:56 +01:00
|
|
|
src: './public/logo.png',
|
2024-03-17 03:25:35 +01:00
|
|
|
replacesTitle: true
|
|
|
|
},
|
2024-03-17 05:41:28 +01:00
|
|
|
editLink: {
|
|
|
|
baseUrl: 'https://github.com/web3privacy/docs/tree/main/',
|
|
|
|
},
|
|
|
|
lastUpdated: true,
|
|
|
|
favicon: '/favicon.ico',
|
2024-03-17 04:15:56 +01:00
|
|
|
customCss: [
|
|
|
|
'./src/styles/custom.css'
|
|
|
|
],
|
2024-03-17 03:25:35 +01:00
|
|
|
sidebar: [
|
|
|
|
{ label: 'Introduction', link: '/' },
|
|
|
|
{
|
2024-03-17 05:41:28 +01:00
|
|
|
label: 'About us',
|
2024-03-17 03:25:35 +01:00
|
|
|
items: [
|
|
|
|
// Each item here is one entry in the navigation menu.
|
|
|
|
{ label: 'Manifesto', link: '/manifesto' },
|
|
|
|
{ label: 'Roadmap', link: '/roadmap' },
|
|
|
|
{ label: 'History', link: '/history' },
|
|
|
|
{ label: 'Brand', link: '/brand' },
|
|
|
|
{ label: 'Contact us', link: '/contacts' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-03-17 05:45:00 +01:00
|
|
|
label: '🔬 Research',
|
|
|
|
collapsed: true,
|
|
|
|
autogenerate: { directory: 'research' },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '📅 Events',
|
|
|
|
collapsed: true,
|
|
|
|
autogenerate: { directory: 'events' },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Other projects',
|
2024-03-17 03:25:35 +01:00
|
|
|
items: [
|
|
|
|
// Each item here is one entry in the navigation menu.
|
2024-03-17 05:41:28 +01:00
|
|
|
{ label: '👁️ Privacy Explorer', link: '/projects/privacy-explorer' },
|
|
|
|
{ label: '📰 Week in the Privacy', link: '/news/week-in-the-privacy' },
|
|
|
|
{ label: '🏆 Privacy Tech Awards', link: '/projects/privacy-tech-awards' },
|
2024-03-17 03:25:35 +01:00
|
|
|
],
|
|
|
|
},
|
2024-03-17 05:41:28 +01:00
|
|
|
/*{
|
2024-03-17 03:25:35 +01:00
|
|
|
label: 'Future concepts',
|
|
|
|
items: [
|
|
|
|
{ label: 'Privacy Tech Awards', link: '/projects/privacy-tech-awards' }
|
|
|
|
]
|
2024-03-17 05:41:28 +01:00
|
|
|
},*/
|
2024-03-17 03:25:35 +01:00
|
|
|
{
|
|
|
|
label: 'Community',
|
|
|
|
items: [
|
|
|
|
{ label: 'Follow us', link: '/follow-us' },
|
|
|
|
{ label: 'Get involved', link: '/get-involved' },
|
|
|
|
{ label: 'Contributors guide', link: '/contributors' },
|
|
|
|
{
|
|
|
|
label: 'Membership',
|
|
|
|
link: '/membership',
|
|
|
|
items: [
|
|
|
|
{ label: 'Personal benefits', link: '/membership/personal-benefits' }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{ label: 'Donate', link: '/donate' },
|
|
|
|
{ label: 'Code of conduct', link: '/code-of-conduct' },
|
|
|
|
]
|
|
|
|
},
|
2024-03-17 05:41:28 +01:00
|
|
|
{
|
|
|
|
label: 'Tools',
|
|
|
|
items: [
|
|
|
|
{ label: 'Git repositories', link: '/git' },
|
|
|
|
{ label: 'Communication tools', link: '/communication' },
|
|
|
|
{ label: 'Workgroups', link: '/workgroups' }
|
|
|
|
]
|
|
|
|
},
|
2024-03-17 03:25:35 +01:00
|
|
|
{
|
|
|
|
label: 'Governance',
|
|
|
|
items: [
|
2024-03-17 06:17:06 +01:00
|
|
|
{ label: 'Governance structure', link: '/governance' },
|
2024-03-17 03:25:35 +01:00
|
|
|
{ label: 'Congress', link: '/congress' },
|
|
|
|
{ label: 'Core Team', link: '/core-team' },
|
|
|
|
{ label: 'Association', link: '/association' },
|
|
|
|
{ label: 'Contributors Guild', link: '/guild' },
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
});
|