diff --git a/docs/intro.mdx b/docs/intro.mdx index c2316634..ca41babb 100644 --- a/docs/intro.mdx +++ b/docs/intro.mdx @@ -6,6 +6,7 @@ hide_title: true --- import { TopBanners } from "@site/src/components/TopBanners"; +import { SponsorList } from "@site/src/components/SponsorList"; @@ -147,3 +148,9 @@ docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock containrrr/wa In the last part of the command, replace `open-webui` with your container name if it is different. Continue with the full [getting started guide](/getting-started). + +## Sponsors 🙌 + +We are incredibly grateful for the generous support of our sponsors. Their contributions help us to maintain and improve our project, ensuring we can continue to deliver quality work to our community. Thank you! + + diff --git a/src/components/SponsorList.js b/src/components/SponsorList.js new file mode 100644 index 00000000..b530968c --- /dev/null +++ b/src/components/SponsorList.js @@ -0,0 +1,21 @@ +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 ( +
+ {sponsors.map((sponsor) => ( + + ))} +
+ ); +}; diff --git a/src/components/Sponsors/Sponsor.js b/src/components/Sponsors/Sponsor.js new file mode 100644 index 00000000..81ede5b0 --- /dev/null +++ b/src/components/Sponsors/Sponsor.js @@ -0,0 +1,32 @@ +export const Sponsor = ({ sponsor }) => { + return ( + <> +
+
+ + {sponsor.name} + +
+ + +
+
+ {sponsor.name} +
+ +
+
+ {sponsor.description} +
+
+
+
+
+ + ); +}; diff --git a/static/sponsors/sponsor.png b/static/sponsors/sponsor.png new file mode 100644 index 00000000..519af1db Binary files /dev/null and b/static/sponsors/sponsor.png differ