Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app/assets/logos/sponsors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -26,4 +28,12 @@ export const SPONSORS = [
},
url: 'https://voidzero.dev/',
},
{
name: 'vlt',
logo: {
dark: LogoVlt,
light: LogoVltLight,
},
url: 'https://vlt.sh/',
},
]
1 change: 1 addition & 0 deletions app/assets/logos/sponsors/vlt-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/logos/sponsors/vlt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/components/About/LogoList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const props = defineProps<{
</script>

<template>
<ul class="flex items-center flex-wrap gap-4 md:gap-x-6 md:gap-y-4 list-none">
<ul class="flex flex-wrap gap-4 md:gap-x-6 md:gap-y-4 list-none">
<li v-for="item in list" :key="item.name">
<a
v-if="'logo' in item"
Expand Down
7 changes: 5 additions & 2 deletions app/pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,17 @@ const roleLabels = computed(
<h2 class="text-lg text-fg uppercase tracking-wider mb-4">
{{ $t('about.sponsors.title') }}
</h2>
<AboutLogoList :list="SPONSORS" />
<AboutLogoList
:list="SPONSORS"
class="flex-col items-start md:flex-row md:items-center"
/>
</div>

<div>
<h2 class="text-lg text-fg uppercase tracking-wider mb-4">
{{ $t('about.oss_partners.title') }}
</h2>
<AboutLogoList :list="OSS_PARTNERS" />
<AboutLogoList :list="OSS_PARTNERS" class="items-center" />
</div>

<div>
Expand Down
Loading