-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.ts
111 lines (109 loc) · 3.47 KB
/
docusaurus.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import type * as Preset from "@docusaurus/preset-classic";
import type { Config } from "@docusaurus/types";
const config: Config = {
future: {
experimental_faster: true,
},
title: "Orthopädische Facharztpraxis",
tagline: "Ihre Orthopäden in Bochum",
url: "https://roggenland-orthopaedie.de",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "philipp985", // Usually your GitHub org/user name.
projectName: "roggenland-orthopaedie-docs", // Usually your repo name.
i18n: { defaultLocale: "de", locales: ["de"] },
themeConfig: {
colorMode: {
defaultMode: "light",
disableSwitch: true,
},
navbar: {
title: "",
logo: {
alt: "Orthopädische Facharztpraxis Roggenland",
src: "img/logo.png",
},
items: [
{
to: "features",
// activeBasePath: 'docs',
label: "Leistungsspektrum",
position: "left",
},
{ to: "aerzte", label: "Ärzte", position: "left" },
{ to: "team", label: "Team", position: "left" },
{ to: "praxis", label: "Praxis", position: "left" },
{ to: "blog", label: "Aktuelles", position: "left" },
{ to: "kontakt", label: "Kontakt & Anfahrt" },
{
to: "termin",
label: "Jetzt Termin vereinbaren",
position: "right",
className:
"button button--secondary padding-left--md padding-right--md",
},
],
},
footer: {
style: "dark",
// links: [
// {
// title: "Inhalte",
// items: [
// {
// label: "Leistungsspektrum",
// to: "docs/",
// },
// {
// label: "Aktuelles",
// to: "docs/doc2/",
// },
// {
// label: "Team",
// to: "docs/doc2/",
// },
// {
// label: "Praxis",
// to: "docs/doc2/",
// },
// ],
// },
// ],
copyright: `Copyright © ${new Date().getFullYear()} Orthopädische Facharztpraxis Roggenland<br/><a href="/imprint">Impressum</a> | <a href="/privacy">Datenschutz</a>`,
},
// announcementBar: {
// id: "xmas-24", // Any value that will identify this message.
// content:
// "In dringenden Fällen sind wir am 23.12., 27.12. und 30.12. in der Zeit von 9-12:00 Uhr erreichbar",
// backgroundColor: "#fafbfc", // Defaults to `#fff`.
// textColor: "#091E42", // Defaults to `#000`.
// },
} satisfies Preset.ThemeConfig,
presets: [
[
"classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
// editUrl:
// 'https://github.com/philipp985/roggenland-orthopaedie-docs/tree/master/',
},
blog: {
showReadingTime: true,
blogSidebarTitle: "Inhalt",
// Please change this to your repo.
// editUrl:
// 'https://github.com/qmBase/roggenland-orthopaedie-docs/tree/master/',
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
} satisfies Preset.Options,
],
],
// plugins: ["@docusaurus/plugin-ideal-image"],
};
module.exports = config;