mirror of
https://github.com/open-webui/docs.git
synced 2026-01-04 10:46:26 +07:00
fix CI
This commit is contained in:
@@ -9,14 +9,14 @@ export const SidebarBanners = () => {
|
||||
url: "https://docs.openwebui.com/enterprise",
|
||||
name: "Open WebUI Inc.",
|
||||
description:
|
||||
"Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support."
|
||||
"Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support.",
|
||||
},
|
||||
{
|
||||
imgSrc: "/sponsors/banners/openwebui-banner.png",
|
||||
mobileImgSrc: "/sponsors/banners/openwebui-banner-mobile.png",
|
||||
url: "https://careers.openwebui.com",
|
||||
name: "Open WebUI Inc.",
|
||||
description: "**We are hiring!** Shape the way humanity engages with _intelligence_."
|
||||
description: "**We are hiring!** Shape the way humanity engages with _intelligence_.",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
import { Sponsor } from "@site/src/components/Sponsors/Sponsor";
|
||||
|
||||
export const SponsorList = () => {
|
||||
const emeraldSponsors = [
|
||||
// {
|
||||
// imgSrc: "/sponsors/logos/n8n.png",
|
||||
// url: "https://n8n.io/",
|
||||
// name: "n8n",
|
||||
// description: "Does your interface have a backend yet? Try n8n",
|
||||
// },
|
||||
// const emeraldSponsors = [
|
||||
// {
|
||||
// imgSrc: "/sponsors/logos/n8n.png",
|
||||
// url: "https://n8n.io/",
|
||||
// name: "n8n",
|
||||
// description: "Does your interface have a backend yet? Try n8n",
|
||||
// },
|
||||
|
||||
// {
|
||||
// imgSrc: "/sponsors/logos/warp.png",
|
||||
// url: "https://warp.dev/open-webui",
|
||||
// name: "Warp",
|
||||
// description: "The intelligent terminal for developers",
|
||||
// },
|
||||
// {
|
||||
// imgSrc: "/sponsors/logos/tailscale.png",
|
||||
// url: "https://tailscale.com/blog/self-host-a-local-ai-stack/?utm_source=OpenWebUI&utm_medium=paid-ad-placement&utm_campaign=OpenWebUI-Docs",
|
||||
// name: "Tailscale",
|
||||
// description: "Connect self-hosted AI to any device with Tailscale",
|
||||
// },
|
||||
];
|
||||
// {
|
||||
// imgSrc: "/sponsors/logos/warp.png",
|
||||
// url: "https://warp.dev/open-webui",
|
||||
// name: "Warp",
|
||||
// description: "The intelligent terminal for developers",
|
||||
// },
|
||||
// {
|
||||
// imgSrc: "/sponsors/logos/tailscale.png",
|
||||
// url: "https://tailscale.com/blog/self-host-a-local-ai-stack/?utm_source=OpenWebUI&utm_medium=paid-ad-placement&utm_campaign=OpenWebUI-Docs",
|
||||
// name: "Tailscale",
|
||||
// description: "Connect self-hosted AI to any device with Tailscale",
|
||||
// },
|
||||
// ];
|
||||
|
||||
const sponsors = [
|
||||
{
|
||||
@@ -35,8 +35,8 @@ export const SponsorList = () => {
|
||||
return (
|
||||
<div>
|
||||
{/* <div className="mb-4">
|
||||
<div className="font-semibold text-xl text-black dark:text-white ">Diamond</div>
|
||||
<hr className="mt-1 mb-3 border-gray-200 dark:border-gray-700" />
|
||||
<div className="text-xl font-semibold text-black dark:text-white">Diamond</div>
|
||||
<hr className="mb-3 mt-1 border-gray-200 dark:border-gray-700" />
|
||||
|
||||
<div className="flex flex-wrap items-start justify-start gap-5">
|
||||
|
||||
@@ -44,8 +44,8 @@ export const SponsorList = () => {
|
||||
</div>
|
||||
|
||||
<div className="mb-4">
|
||||
<div className="font-semibold text-xl text-black dark:text-white ">Sapphire</div>
|
||||
<hr className="mt-1 mb-3 border-gray-200 dark:border-gray-700" />
|
||||
<div className="text-xl font-semibold text-black dark:text-white">Sapphire</div>
|
||||
<hr className="mb-3 mt-1 border-gray-200 dark:border-gray-700" />
|
||||
|
||||
<div className="flex flex-wrap items-start justify-start gap-5">
|
||||
|
||||
@@ -53,8 +53,8 @@ export const SponsorList = () => {
|
||||
</div>
|
||||
|
||||
<div className="mb-4">
|
||||
<div className="font-semibold text-xl text-black dark:text-white ">Topaz</div>
|
||||
<hr className="mt-1 mb-3 border-gray-200 dark:border-gray-700" />
|
||||
<div className="text-xl font-semibold text-black dark:text-white">Topaz</div>
|
||||
<hr className="mb-3 mt-1 border-gray-200 dark:border-gray-700" />
|
||||
|
||||
<div className="flex flex-wrap items-start justify-start gap-5">
|
||||
|
||||
@@ -68,9 +68,9 @@ export const SponsorList = () => {
|
||||
<hr className="mb-3 mt-1 border-gray-200 dark:border-gray-700" />
|
||||
|
||||
<div className="flex flex-wrap items-start justify-start gap-5">
|
||||
{emeraldSponsors.map((sponsor, sponsorIdx) => (
|
||||
{/* {emeraldSponsors.map((sponsor, sponsorIdx) => (
|
||||
<Sponsor sponsor={sponsor} key={`emerald-${sponsorIdx}`} />
|
||||
))}
|
||||
))} */}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import { marked } from "marked";
|
||||
|
||||
export const TopBanner = ({
|
||||
item,
|
||||
bannerClassName = "h-18 ",
|
||||
bannerClassName = "h-18",
|
||||
label = true,
|
||||
description = true,
|
||||
mobile = true,
|
||||
|
||||
@@ -14,14 +14,14 @@ export const TopBanners = ({
|
||||
url: "https://docs.openwebui.com/enterprise",
|
||||
name: "Open WebUI Inc.",
|
||||
description:
|
||||
"Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support."
|
||||
"Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support.",
|
||||
},
|
||||
{
|
||||
imgSrc: "/sponsors/banners/openwebui-banner.png",
|
||||
mobileImgSrc: "/sponsors/banners/openwebui-banner-mobile.png",
|
||||
url: "https://careers.openwebui.com",
|
||||
name: "Open WebUI Inc.",
|
||||
description: "**We are hiring!** Shape the way humanity engages with _intelligence_."
|
||||
description: "**We are hiring!** Shape the way humanity engages with _intelligence_.",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ type Props = WrapperProps<typeof ContentType>;
|
||||
export default function ContentWrapper(props: Props): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div className="h-full items-center w-full flex ">
|
||||
<div className="flex h-full w-full items-center">
|
||||
<div className="flex w-full flex-col">
|
||||
<div>
|
||||
<Content {...props} />
|
||||
|
||||
Reference in New Issue
Block a user