docs/src/components/TopBanners.js
2024-05-28 13:31:11 -07:00

27 lines
849 B
JavaScript

import { TopBanner } from "@site/src/components/Sponsors/TopBanner";
export const TopBanners = () => {
return (
<TopBanner
items={[
{
imgSrc: "/ads/pipelines-banner.png",
mobileImgSrc: "/ads/pipelines-banner-mobile.png",
url: "https://github.com/open-webui/pipelines",
name: "Open WebUI Pipelines",
description:
"Pipelines: Versatile, UI-Agnostic OpenAI-Compatible Plugin Framework",
},
{
imgSrc: "/ads/placeholder.png",
mobileImgSrc: "/ads/placeholder-mobile.png",
url: "https://github.com/sponsors/tjbck",
name: "Open WebUI",
description:
"The top banner spot is reserved for only two Enterprise Diamond sponsors on a first-come, first-served basis",
},
]}
/>
);
};