Skip to content

Commit

Permalink
Merge pull request #46 from UXCorpRangel/feature/new-volunteer
Browse files Browse the repository at this point in the history
Add new volunteer
  • Loading branch information
jagcruz authored Nov 20, 2024
2 parents 61b273c + 255492a commit 590ccd3
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 47 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@astrojs/check": "^0.9.4",
"@fontsource-variable/onest": "^5.1.0",
"@fontsource/titan-one": "^5.1.0",
"astro": "^4.16.10",
"astro": "^4.16.13",
"astro-icon": "^1.1.1",
"astro-seo-schema": "^4.0.2",
"sanitize.css": "^13.0.0",
Expand Down
40 changes: 13 additions & 27 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/assets/images/volunteers/luis-perez.webp
Binary file not shown.
11 changes: 7 additions & 4 deletions src/contracts/role.types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type TagRole = 'ux' | 'ui' | 'research' | 'product-designer' | 'writer' | 'product-owner' | 'dev';
export type TagRole = 'ux' | 'ui' | 'research' | 'product-designer' | 'writer' | 'product-owner' | 'dev' | 'editor';

export const ROLE_BG_COLORS: Record<TagRole, string> = {
ux: '#e67e22',
Expand All @@ -7,7 +7,8 @@ export const ROLE_BG_COLORS: Record<TagRole, string> = {
'product-designer': '#3498db',
writer: '#9f00ff',
'product-owner': 'var(--text-color)',
dev: '#c03131'
dev: '#c03131',
editor: '#64ffda'
};

export const ROLE_FG_COLORS: Record<TagRole, string> = {
Expand All @@ -17,7 +18,8 @@ export const ROLE_FG_COLORS: Record<TagRole, string> = {
'product-designer': 'var(--alt-text-color)',
writer: 'var(--text-color)',
'product-owner': 'var(--alt-text-color)',
dev: 'var(--text-color)'
dev: 'var(--text-color)',
editor: 'var(--alt-text-color)'
};

export const ROLE_TEXTS: Record<TagRole, string> = {
Expand All @@ -27,5 +29,6 @@ export const ROLE_TEXTS: Record<TagRole, string> = {
'product-designer': 'Product Designer',
writer: 'Writer',
'product-owner': 'Product Owner',
dev: 'Dev'
dev: 'Dev',
editor: 'Editor'
};
11 changes: 11 additions & 0 deletions src/data/team.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,16 @@ export const volunteers: VolunteerMember[] = [
img: 'tomas-graziano',
tags: ['dev'],
socials: [{ label: 'GitHub', link: 'https://github.com/GountzJs', icon: 'github', color: 'var(--github-color)' }]
},
{
name: 'Luis Pérez',
img: 'luis-perez',
tags: ['editor', 'dev', 'ui'],
socials: [
{ label: 'Sitio Web', link: 'https://luis-perez.satemporary.store', icon: 'website', color: '#cc0404' },
{ label: 'Github', link: 'https://github.com/Luis-Perez-01', icon: 'github', color: 'var(--github-color)' },
{ label: 'LinkedIn', link: 'https://www.linkedin.com/in/luismpp', icon: 'linkedin', color: 'var(--linkedin-color)' },
{ label: 'VODify Studio', link: 'https://vodifystudio.com', icon: 'website', color: '#ff0066' }
]
}
];
15 changes: 0 additions & 15 deletions src/icons/socials/instagram.1.svg

This file was deleted.

0 comments on commit 590ccd3

Please sign in to comment.