diff --git a/docs/pipelines/_category_.json b/docs/pipelines/_category_.json index 5e0e3e5..89ce4e9 100644 --- a/docs/pipelines/_category_.json +++ b/docs/pipelines/_category_.json @@ -1,4 +1,4 @@ { "label": "⚡ Pipelines", "position": 700 -} \ No newline at end of file +} diff --git a/docs/troubleshooting/network-diagrams.mdx b/docs/troubleshooting/network-diagrams.mdx index 19369a9..820977a 100644 --- a/docs/troubleshooting/network-diagrams.mdx +++ b/docs/troubleshooting/network-diagrams.mdx @@ -5,19 +5,6 @@ title: "🕸️ Network Diagrams" Here, we provide clear and structured diagrams to help you understand how various components of the network interact within different setups. This documentation is designed to assist both macOS/Windows and Linux users. Each scenario is illustrated using Mermaid diagrams to show how the interactions are set up depending on the different system configurations and deployment strategies. -## Table of Contents -1. [Mac OS/Windows Setup Options](#macoswindows-setup-options) - - [Ollama on Host, Open WebUI in Container](#ollama-on-host-open-webui-in-container) - - [Ollama and Open WebUI in Compose Stack](#ollama-and-open-webui-in-compose-stack) - - [Ollama and Open WebUI, Separate Networks](#ollama-and-open-webui-separate-networks) - - [Open WebUI in Host Network](#open-webui-in-host-network) -2. [Linux Setup Options](#linux-setup-options) - - [Ollama on Host, Open WebUI in Container](#ollama-on-host-open-webui-in-container-linux) - - [Ollama and Open WebUI in Compose Stack](#ollama-and-open-webui-in-compose-stack-linux) - - [Ollama and Open WebUI, Separate Networks](#ollama-and-open-webui-separate-networks-linux) - - [Open WebUI in Host Network, Ollama on Host](#open-webui-in-host-network-ollama-on-host) - - ## Mac OS/Windows Setup Options 🖥️ ### Ollama on Host, Open WebUI in Container @@ -173,4 +160,4 @@ Rel(user, openwebui, "Makes requests via listening port", "http://localhost:8080 UpdateRelStyle(user, openwebui, $offsetX="-100", $offsetY="-50") ``` -Each setup addresses different deployment strategies and networking configurations to help you choose the best layout for your requirements. \ No newline at end of file +Each setup addresses different deployment strategies and networking configurations to help you choose the best layout for your requirements. diff --git a/docs/tutorials/_category_.json b/docs/tutorials/_category_.json index fbd3255..1b29f50 100644 --- a/docs/tutorials/_category_.json +++ b/docs/tutorials/_category_.json @@ -4,4 +4,4 @@ "link": { "type": "generated-index" } -} \ No newline at end of file +} diff --git a/src/components/SponsorList.tsx b/src/components/SponsorList.tsx index 9b322d3..607d204 100644 --- a/src/components/SponsorList.tsx +++ b/src/components/SponsorList.tsx @@ -12,7 +12,7 @@ export const SponsorList = () => { ]; return ( -
+
{sponsors.map((sponsor) => ( ))} diff --git a/src/components/Sponsors/Sponsor.tsx b/src/components/Sponsors/Sponsor.tsx index 4f3959a..eae635f 100644 --- a/src/components/Sponsors/Sponsor.tsx +++ b/src/components/Sponsors/Sponsor.tsx @@ -1,26 +1,26 @@ export const Sponsor = ({ sponsor }) => { return ( <> -
-
+
+ -
-
+
+
{sponsor.name}
-
-
+
+
{sponsor.description}
diff --git a/src/components/Sponsors/TopBanner.tsx b/src/components/Sponsors/TopBanner.tsx index 904bae8..786c408 100644 --- a/src/components/Sponsors/TopBanner.tsx +++ b/src/components/Sponsors/TopBanner.tsx @@ -4,27 +4,27 @@ export const TopBanner = ({ items }) => { {items.map((item) => ( <>
-
+
Sponsored by {item.name}
{item.name} {item.name} -
+
{item.description}
diff --git a/src/components/TopBanners.tsx b/src/components/TopBanners.tsx index fd4e186..a477b2e 100644 --- a/src/components/TopBanners.tsx +++ b/src/components/TopBanners.tsx @@ -15,8 +15,7 @@ export const TopBanners = () => { mobileImgSrc: "/ads/sponsor-banner-small-1.png", url: "https://davewaring.com/tag/digital-brain-building/", name: "Dave Waring", - description: - "Follow along as I build my own AI powered digital brain.", + description: "Follow along as I build my own AI powered digital brain.", }, ]; diff --git a/tsconfig.json b/tsconfig.json index e40883c..2c51bdf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,17 @@ // https://docusaurus.io/docs/typescript-support // This file is not used in compilation. It is here just for a nice editor experience. { - "extends": "@docusaurus/tsconfig", - "compilerOptions": { - "baseUrl": ".", - // https://miyoon.medium.com/array-parameters-in-tsconfig-json-are-always-overwritten-11c80bb514e1 - // https://github.com/microsoft/TypeScript/issues/20110 - "types": [ - "node", - "@docusaurus/module-type-aliases", - "@docusaurus/theme-classic", - "docusaurus-plugin-sass" - ] - }, - "exclude": ["node_modules", "build", ".docusaurus"] + "extends": "@docusaurus/tsconfig", + "compilerOptions": { + "baseUrl": ".", + // https://miyoon.medium.com/array-parameters-in-tsconfig-json-are-always-overwritten-11c80bb514e1 + // https://github.com/microsoft/TypeScript/issues/20110 + "types": [ + "node", + "@docusaurus/module-type-aliases", + "@docusaurus/theme-classic", + "docusaurus-plugin-sass" + ] + }, + "exclude": ["node_modules", "build", ".docusaurus"] }