diff --git a/docusaurus.config.js b/docusaurus.config.js index 27dc540..de08b8c 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -65,12 +65,12 @@ const config = { /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ // Replace with your project's social card - image: "img/docusaurus-social-card.jpg", + // image: "img/docusaurus-social-card.jpg", navbar: { title: "Open WebUI", logo: { - alt: "My Site Logo", src: "img/logo.png", + srcDark: "img/logo-dark.png", }, items: [ // { @@ -87,49 +87,49 @@ const config = { ], }, footer: { - style: "dark", - // links: [ - // { - // title: "Docs", - // items: [ - // { - // label: "Tutorial", - // to: "/docs/intro", - // }, - // ], - // }, - // { - // title: "Community", - // items: [ - // { - // label: "Stack Overflow", - // href: "https://stackoverflow.com/questions/tagged/docusaurus", - // }, - // { - // label: "Discord", - // href: "https://discordapp.com/invite/docusaurus", - // }, - // { - // label: "Twitter", - // href: "https://twitter.com/docusaurus", - // }, - // ], - // }, - // { - // title: "More", - // items: [ - // { - // label: "Blog", - // to: "/blog", - // }, - // { - // label: "GitHub", - // href: "https://github.com/facebook/docusaurus", - // }, - // ], - // }, - // ], - copyright: `Copyright © ${new Date().getFullYear()} OpenWebUI`, + logo: { + src: "img/logo-dark.png", + height: 100, + }, + style: "light", + links: [ + { + title: "Docs", + items: [ + { + label: "Getting Started", + to: "getting-started", + }, + ], + }, + { + title: "Community", + items: [ + { + label: "GitHub", + href: "https://github.com/open-webui/open-webui", + }, + { + label: "Discord", + href: "https://discord.gg/5rJgQTnV4s", + }, + { + label: "Twitter", + href: "https://twitter.com/OpenWebUI", + }, + ], + }, + { + title: "More", + items: [ + { + label: "About", + to: "https://openwebui.com", + }, + ], + }, + ], + // copyright: `Copyright © ${new Date().getFullYear()} OpenWebUI`, }, prism: { theme: prismThemes.github, diff --git a/src/css/custom.css b/src/css/custom.css index e61d48c..2b7bff9 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -4,6 +4,7 @@ * work well for content-centric websites. */ +@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap"); @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap"); @@ -414,7 +415,7 @@ article p a { } :root { - --ifm-font-family-base: "Inter"; + --ifm-font-family-base: "Manrope", "Inter"; } /* Header Dropdown Menu */ diff --git a/static/img/logo-dark.png b/static/img/logo-dark.png new file mode 100644 index 0000000..a158087 Binary files /dev/null and b/static/img/logo-dark.png differ diff --git a/static/img/logo.png b/static/img/logo.png index 519af1d..389196c 100644 Binary files a/static/img/logo.png and b/static/img/logo.png differ