Skip to content

Commit

Permalink
feat: add echo3D logo
Browse files Browse the repository at this point in the history
  • Loading branch information
selina-kim committed Jan 9, 2024
1 parent 6c16096 commit d38f383
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Binary file added src/assets/sponsor_logos/echo3d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 14 additions & 1 deletion src/components/Sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import verbwireLogo from "../assets/sponsor_logos/verbwire.svg";
import wolfram from "../assets/sponsor_logos/wolfram.svg";
import stickeryou from "../assets/sponsor_logos/stickeryou.svg";
import cohere from "../assets/sponsor_logos/cohere.svg";
import echo3d from "../assets/sponsor_logos/echo3d.png";
const { id } = Astro.props;
Expand Down Expand Up @@ -180,7 +181,7 @@ const logoList: Array<{
},
{
image: {
class: "brightness-0 invert object-contain max-h-32 p-4",
class: "brightness-0 invert object-contain max-h-32 p-3",
src: cohere,
alt: "Cohere",
srcs: await getImgSrcs(cohere, [cohere.width]),
Expand All @@ -190,6 +191,18 @@ const logoList: Array<{
link: "https://cohere.com/",
divClass: "col-span-4 sm:col-span-3",
},
{
image: {
class: "brightness-0 invert object-contain max-h-32 p-2",
src: echo3d,
alt: "Echo3D",
srcs: await getImgSrcs(echo3d, [echo3d.width]),
sizes:
"(min-width: 1240px) 197px, (min-width: 1040px) 15.56vw, (min-width: 780px) 101px, (min-width: 640px) calc(50vw - 98px), calc(100vw - 112px)",
},
link: "https://www.echo3d.com/",
divClass: "col-span-4 sm:col-span-3",
},
];
---

Expand Down

0 comments on commit d38f383

Please sign in to comment.