-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67925fe
commit de132f1
Showing
16 changed files
with
21,195 additions
and
16,805 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,108 +1,111 @@ | ||
import type * as Preset from "@docusaurus/preset-classic"; | ||
import type { Config } from "@docusaurus/types"; | ||
|
||
const config: Config = { | ||
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: "new_website", // Any value that will identify this message. | ||
// content: | ||
// 'Wir sind auch in der Corona Pandemie für Sie erreichbar. Lesen Sie <a target="_blank" rel="noopener noreferrer" href="/blog/corona">hier</a>, was wir zu Ihrer Sicherheit unternehmen.', | ||
// 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; | ||
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.