Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.3 #15

Merged
merged 9 commits into from
Aug 7, 2023
Prev Previous commit
Next Next commit
feat(presets.ts): add VueJS preset to the list of all presets
  • Loading branch information
lyqht committed Aug 7, 2023
commit fb76bf5e2b9011735fd1623611020d62ee6c2c1c
29 changes: 28 additions & 1 deletion src/utils/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,32 @@ export const vuei18nPreset = {
}
}

export const vueJsPreset = {
...defaultPresetOptions,
name: 'VueJS',
data: 'https://vuejs.org/',
image: 'https://api.iconify.design/logos:vue.svg',
dotsOptions: {
color: '#35495e',
type: 'rounded'
},
cornersSquareOptions: {
color: '#40b883',
type: 'extra-rounded'
},
cornersDotOptions: {
color: '#40b883',
type: 'dot'
},
imageOptions: {
margin: 2
},
style: {
borderRadius: '12px',
background: '#ffffff'
}
}

// Individual presets

export const defaultPreset: Preset = {
Expand Down Expand Up @@ -196,10 +222,11 @@ export const pejuangKodePreset = {
export const allPresets = [
defaultPreset,
padletPreset,
uiliciousPreset,
supabasePreset,
vercelLightPreset,
vercelDarkPreset,
uiliciousPreset,
vueJsPreset,
vuei18nPreset,
pejuangKodePreset
]