Skip to content

Commit 10a912b

Browse files
feat: add new sections to about page (#1630)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 6d98b52 commit 10a912b

27 files changed

+903
-29
lines changed
Lines changed: 22 additions & 0 deletions
Loading
Lines changed: 22 additions & 0 deletions
Loading
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
import LogoNuxt from '~/assets/logos/oss-partners/nuxt.svg'
2+
import LogoOpenSourcePledge from '~/assets/logos/oss-partners/open-source-pledge.svg'
3+
import LogoOpenSourcePledgeLight from '~/assets/logos/oss-partners/open-source-pledge-light.svg'
4+
import LogoOxC from '~/assets/logos/oss-partners/oxc.svg'
5+
import LogoRolldown from '~/assets/logos/oss-partners/rolldown.svg'
6+
import LogoStorybook from '~/assets/logos/oss-partners/storybook.svg'
7+
import LogoVite from '~/assets/logos/oss-partners/vite.svg'
8+
import LogoVitest from '~/assets/logos/oss-partners/vitest.svg'
9+
import LogoVue from '~/assets/logos/oss-partners/vue.svg'
10+
import LogoAlgolia from '~/assets/logos/oss-partners/algolia.svg'
11+
import LogoAlgoliaLight from '~/assets/logos/oss-partners/algolia-light.svg'
12+
13+
// The list is used on the about page. To add, simply upload the logos nearby and add an entry here. Prefer SVGs.
14+
// For logo src, specify a string or object with the light and dark theme variants.
15+
// Prefer original assets from partner sites to keep their brand identity.
16+
//
17+
// If there are no original assets and the logo is not universal, you can add only the dark theme variant
18+
// and specify 'auto' for the light one - this will grayscale the logo and invert it in light mode.
19+
export const OSS_PARTNERS = [
20+
{
21+
name: 'Open Source Pledge',
22+
logo: {
23+
dark: LogoOpenSourcePledge,
24+
light: LogoOpenSourcePledgeLight,
25+
},
26+
url: 'https://opensourcepledge.com/',
27+
},
28+
{
29+
name: 'Void Zero',
30+
items: [
31+
{
32+
name: 'Vite',
33+
logo: LogoVite,
34+
url: 'https://vite.dev/',
35+
},
36+
{
37+
name: 'OxC',
38+
logo: LogoOxC,
39+
url: 'https://oxc.rs/',
40+
},
41+
{
42+
name: 'Vitest',
43+
logo: LogoVitest,
44+
url: 'https://vitest.dev/',
45+
},
46+
{
47+
name: 'Rolldown',
48+
logo: LogoRolldown,
49+
url: 'https://rolldown.rs/',
50+
},
51+
],
52+
},
53+
{
54+
name: 'Nuxt',
55+
logo: LogoNuxt,
56+
url: 'https://nuxt.com/',
57+
},
58+
{
59+
name: 'Vue',
60+
logo: LogoVue,
61+
url: 'https://vuejs.org/',
62+
},
63+
{
64+
name: 'Algolia',
65+
logo: {
66+
dark: LogoAlgolia,
67+
light: LogoAlgoliaLight,
68+
},
69+
url: 'https://algolia.com/',
70+
},
71+
{
72+
name: 'Storybook',
73+
logo: LogoStorybook,
74+
url: 'https://storybook.js.org/',
75+
},
76+
]
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 17 additions & 0 deletions
Loading
Lines changed: 17 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)