Customized CSS, footer

This commit is contained in:
Christoph Haas 2024-10-21 23:37:58 +02:00
parent 4d9df2bc30
commit 2fdf2840cb
5 changed files with 57 additions and 32 deletions

View file

@ -5,29 +5,36 @@ import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://workaround.org',
integrations: [
starlight({
title: 'ISPmail Guide',
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Start Here', slug: 'ispmail-bookworm' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
logo: {
light: './src/assets/logo.svg',
dark: './src/assets/logo-dark.svg',
replacesTitle: true,
},
}),
sitemap()
],
site: "https://workaround.org",
integrations: [
starlight({
lastUpdated: true,
title: "ISPmail Guide",
components: {
Footer: "./src/components/Footer.astro",
},
customCss: [
"./src/styles/custom.css",
],
sidebar: [
{
label: "Guides",
items: [
// Each item here is one entry in the navigation menu.
{ label: "Start Here", slug: "ispmail-bookworm" },
],
},
{
label: "Reference",
autogenerate: { directory: "reference" },
},
],
logo: {
light: "./src/assets/logo.svg",
dark: "./src/assets/logo-dark.svg",
replacesTitle: true,
},
}),
sitemap(),
],
});