mirror of
https://github.com/open-webui/docs.git
synced 2026-03-26 13:18:42 +07:00
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { TopBanner } from "@site/src/components/Sponsors/TopBanner";
|
|
import { useEffect, useState } from "react";
|
|
|
|
export const TopBanners = ({
|
|
bannerClassName = "h-18",
|
|
label = true,
|
|
description = true,
|
|
mobile = true,
|
|
}) => {
|
|
const items = [
|
|
{
|
|
imgSrc: "/sponsors/banners/openwebui-banner.png",
|
|
mobileImgSrc: "/sponsors/banners/openwebui-banner-mobile.png",
|
|
url: "https://docs.openwebui.com/enterprise",
|
|
name: "Open WebUI",
|
|
description:
|
|
"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",
|
|
description:
|
|
"**We are hiring!** Shape the way humanity engages with _intelligence_.",
|
|
},
|
|
];
|
|
|
|
// Randomly select an item to display
|
|
const [selectedItemIdx, setSelectedItemIdx] = useState(
|
|
Math.floor(Math.random() * items.length)
|
|
);
|
|
|
|
useEffect(() => {
|
|
// After mounting update every 5 seconds
|
|
setInterval(() => {
|
|
setSelectedItemIdx(Math.floor(Math.random() * items.length));
|
|
}, 10000); // 10000 ms = 10 seconds
|
|
}, []);
|
|
|
|
return (
|
|
<TopBanner
|
|
bannerClassName={bannerClassName}
|
|
item={items[selectedItemIdx]}
|
|
label={label}
|
|
description={description}
|
|
mobile={mobile}
|
|
/>
|
|
);
|
|
};
|