Files
open-webui-docs/src/components/SponsorList.tsx
Timothy Jaeryang Baek 48764c3070 refac
2025-03-27 20:42:21 -07:00

22 lines
478 B
TypeScript

import { Sponsor } from "@site/src/components/Sponsors/Sponsor";
export const SponsorList = () => {
const sponsors = [
{
imgSrc: "/sponsors/sponsor.png",
url: "https://openwebui.com",
name: "Open WebUI",
description:
"On a mission to build the best open-source AI user interface.",
},
];
return (
<div className="flex flex-wrap items-start justify-start gap-5">
{sponsors.map((sponsor) => (
<Sponsor sponsor={sponsor} />
))}
</div>
);
};