Skip to content

Commit

Permalink
Added engine logo and update favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur committed Nov 22, 2023
1 parent 083e317 commit 8c8b41b
Show file tree
Hide file tree
Showing 10 changed files with 120 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/containers/DownloadButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ import axios from "axios";
const systemsTemplate = [
{
name: "Download for Mac",
logo: require("@site/static/img/apple-logo-white.png").default,
logo: require("@site/static/img/logos/apple-logo-white.png").default,
fileFormat: "{appname}-mac-arm64.zip",
},
{
name: "Download for Windows",
logo: require("@site/static/img/windows-logo-white.png").default,
logo: require("@site/static/img/logos/windows-logo-white.png").default,
fileFormat: "{appname}-win-amd64.zip",
},
{
name: "Download for Linux",
logo: require("@site/static/img/linux-logo-white.png").default,
logo: require("@site/static/img/logos/linux-logo-white.png").default,
fileFormat: "{appname}-linux-amd64.zip",
},
];
Expand Down
20 changes: 20 additions & 0 deletions docs/src/containers/Homepage/Architecture/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,19 @@ export default function Architecture() {
<h6 className="mb-4">LLMs</h6>
<div className="grid grid-cols-1 xl:grid-cols-2 gap-4">
<div className="dark:bg-[#27272A]/50 bg-[#D4D4D8]/50 border dark:border-gray-800 border-gray-300 p-4 lg:p-6 rounded-lg backdrop-blur-md">
<img
src="/img/logos/llamacpp.svg"
alt="Logo llamacpp"
className="mb-4 mx-auto w-[70px]"
/>
<p>Llama.cpp</p>
</div>
<div className="dark:bg-[#27272A]/50 bg-[#D4D4D8]/50 border dark:border-gray-800 border-gray-300 p-4 lg:p-6 rounded-lg backdrop-blur-md">
<img
src="/img/logos/nvdia.svg"
alt="Logo nvdia"
className="mb-4 mx-auto w-[70px]"
/>
<p>TensorRT-LLM</p>
<p className="mt-2 font-medium bg-blue-600 inline-flex px-2 rounded-md text-sm text-white">
Coming Soon
Expand All @@ -62,6 +72,11 @@ export default function Architecture() {
<div className="border dark:border-gray-800 border-gray-300 p-4 lg:p-6 rounded-lg backdrop-blur-md">
<h6 className="mb-4">Speech</h6>
<div className="dark:bg-[#27272A]/50 bg-[#D4D4D8]/50 border dark:border-gray-800 border-gray-300 p-4 lg:p-6 rounded-lg backdrop-blur-md">
<img
src="/img/logos/whispercpp.svg"
alt="Logo whispercpp"
className="mb-4 mx-auto w-[70px]"
/>
<p>Whisper.cpp</p>
<p className="mt-2 font-medium bg-blue-600 inline-flex px-2 rounded-md text-sm text-white">
Coming Soon
Expand All @@ -71,6 +86,11 @@ export default function Architecture() {
<div className="border dark:border-gray-800 border-gray-300 p-4 lg:p-6 rounded-lg backdrop-blur-md">
<h6 className="mb-4">Vision</h6>
<div className="dark:bg-[#27272A]/50 bg-[#D4D4D8]/50 border dark:border-gray-800 border-gray-300 p-4 lg:p-6 rounded-lg backdrop-blur-md">
<img
src="/img/logos/stable-diffusion.svg"
alt="Logo stable-diffusion"
className="mb-4 mx-auto w-[70px]"
/>
<p>StableDiffusion</p>
<p className="mt-2 font-medium bg-blue-600 inline-flex px-2 rounded-md text-sm text-white">
Coming Soon
Expand Down
Binary file modified docs/static/img/favicon.ico
Binary file not shown.
File renamed without changes
File renamed without changes
29 changes: 29 additions & 0 deletions docs/static/img/logos/llamacpp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions docs/static/img/logos/nvdia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions docs/static/img/logos/stable-diffusion.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions docs/static/img/logos/whispercpp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes

0 comments on commit 8c8b41b

Please sign in to comment.