diff --git a/app/assets/logos/sponsors/index.ts b/app/assets/logos/sponsors/index.ts index 392d1c54c..419a7abb9 100644 --- a/app/assets/logos/sponsors/index.ts +++ b/app/assets/logos/sponsors/index.ts @@ -2,6 +2,8 @@ import LogoVercel from './vercel.svg' import LogoVercelLight from './vercel-light.svg' import LogoVoidZero from './void-zero.svg' import LogoVoidZeroLight from './void-zero-light.svg' +import LogoVlt from './vlt.svg' +import LogoVltLight from './vlt-light.svg' // The list is used on the about page. To add, simply upload the logos nearby and add an entry here. Prefer SVGs. // For logo src, specify a string or object with the light and dark theme variants. @@ -9,6 +11,7 @@ import LogoVoidZeroLight from './void-zero-light.svg' // // If there are no original assets and the logo is not universal, you can add only the dark theme variant // and specify 'auto' for the light one - this will grayscale the logo and invert it in light mode. +// The normalisingIndent is the Y-axis space to visually stabilize favicon-only logos with logotypes that contain long name. export const SPONSORS = [ { name: 'Vercel', @@ -16,6 +19,7 @@ export const SPONSORS = [ dark: LogoVercel, light: LogoVercelLight, }, + normalisingIndent: '0.875rem', url: 'https://vercel.com/', }, { @@ -24,6 +28,16 @@ export const SPONSORS = [ dark: LogoVoidZero, light: LogoVoidZeroLight, }, + normalisingIndent: '0.875rem', url: 'https://voidzero.dev/', }, + { + name: 'vlt', + logo: { + dark: LogoVlt, + light: LogoVltLight, + }, + normalisingIndent: '0.25rem', + url: 'https://vlt.sh/', + }, ] diff --git a/app/assets/logos/sponsors/vlt-light.svg b/app/assets/logos/sponsors/vlt-light.svg new file mode 100644 index 000000000..80dc82cb0 --- /dev/null +++ b/app/assets/logos/sponsors/vlt-light.svg @@ -0,0 +1 @@ + diff --git a/app/assets/logos/sponsors/vlt.svg b/app/assets/logos/sponsors/vlt.svg new file mode 100644 index 000000000..5d7ccc948 --- /dev/null +++ b/app/assets/logos/sponsors/vlt.svg @@ -0,0 +1 @@ + diff --git a/app/components/About/LogoImg.vue b/app/components/About/LogoImg.vue index c8eabe0b4..73e45d2b9 100644 --- a/app/components/About/LogoImg.vue +++ b/app/components/About/LogoImg.vue @@ -11,30 +11,30 @@ const props = defineProps<{