feat: Add Vercel endpoint icon with light/dark mode support

Add SVG icon for Vercel AI Gateway endpoint that adapts to system
color scheme using CSS prefers-color-scheme media query.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
jerilynzheng 2026-02-01 09:14:23 -08:00
parent efbc088642
commit c5f8a084f7
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<svg viewBox="0 0 1155 1000" xmlns="http://www.w3.org/2000/svg">
<style>
path { fill: #000; }
@media (prefers-color-scheme: dark) { path { fill: #fff; } }
</style>
<path d="M577.344 0L1154.69 1000H0L577.344 0Z"/>
</svg>

After

Width:  |  Height:  |  Size: 234 B

View file

@ -24,6 +24,7 @@ const knownEndpointAssets = {
[KnownEndpoints.shuttleai]: 'assets/shuttleai.png',
[KnownEndpoints['together.ai']]: 'assets/together.png',
[KnownEndpoints.unify]: 'assets/unify.webp',
[KnownEndpoints.vercel]: 'assets/vercel.svg',
};
const knownEndpointClasses = {