@@ -2,20 +2,24 @@ import LogoVercel from './vercel.svg'
22import LogoVercelLight from './vercel-light.svg'
33import LogoVoidZero from './void-zero.svg'
44import LogoVoidZeroLight from './void-zero-light.svg'
5+ import LogoVlt from './vlt.svg'
6+ import LogoVltLight from './vlt-light.svg'
57
68// The list is used on the about page. To add, simply upload the logos nearby and add an entry here. Prefer SVGs.
79// For logo src, specify a string or object with the light and dark theme variants.
810// Prefer original assets from partner sites to keep their brand identity.
911//
1012// If there are no original assets and the logo is not universal, you can add only the dark theme variant
1113// and specify 'auto' for the light one - this will grayscale the logo and invert it in light mode.
14+ // The normalisingIndent is the Y-axis space to visually stabilize favicon-only logos with logotypes that contain long name.
1215export const SPONSORS = [
1316 {
1417 name : 'Vercel' ,
1518 logo : {
1619 dark : LogoVercel ,
1720 light : LogoVercelLight ,
1821 } ,
22+ normalisingIndent : '0.875rem' ,
1923 url : 'https://vercel.com/' ,
2024 } ,
2125 {
@@ -24,6 +28,16 @@ export const SPONSORS = [
2428 dark : LogoVoidZero ,
2529 light : LogoVoidZeroLight ,
2630 } ,
31+ normalisingIndent : '0.875rem' ,
2732 url : 'https://voidzero.dev/' ,
2833 } ,
34+ {
35+ name : 'vlt' ,
36+ logo : {
37+ dark : LogoVlt ,
38+ light : LogoVltLight ,
39+ } ,
40+ normalisingIndent : '0.25rem' ,
41+ url : 'https://vlt.sh/' ,
42+ } ,
2943]
0 commit comments