Skip to content

Commit

Permalink
merge: Merge pull request #33 from henryhale/docs/contributors
Browse files Browse the repository at this point in the history
add Docs/contributors #29
  • Loading branch information
henryhale committed Oct 8, 2023
2 parents 3659562 + 31fea85 commit 6a6ac77
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Supporting wide range of browsers is the goal. Modern browsers, most specificall

## Contributing

Thank you for checking out this awesome project. Any contributions to the project are appreciated, whether it's fixing bugs, adding new features, or improving documentation. To contribute, please follow these guidelines:
Thank you for checking out this awesome project. Any contributions to the project are [appreciated](https://xterminal.js.org/about/team.html), whether it's fixing bugs, adding new features, or improving documentation. To contribute, please follow these guidelines:

- **Issues**: Before starting to work on a new feature or bug fix, please check the issue tracker to see if the task is already in progress or has been reported. If not, feel free to [open a new issue](https://github.com/henryhale/xterminal/issues/new) to discuss the proposed changes or bug fixes.
- **Branching**: Create a new branch for each feature or bug fix you are working on. Use clear descriptive branch names that reflect the purpose of your changes e.g. `feature/events` or `bugfix/issue-1234`.
Expand Down
32 changes: 28 additions & 4 deletions docs/about/team.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ layout: page
import {
VPTeamPage,
VPTeamPageTitle,
VPTeamMembers
VPTeamMembers,
VPTeamPageSection
} from 'vitepress/theme';

const members = [
Expand All @@ -20,18 +21,41 @@ const members = [
{
icon: 'github',
link: 'https://github.com/henryhale'
},
{
icon: 'twitter',
link: 'https://twitter.com/devhenryhale'
}
]
},
];

const contributors = [
{
name: 'Enzo Notario',
title: 'Full Stack Developer',
avatar: 'https://www.github.com/enzonotario.png',
links: [
{
icon: 'github',
link: 'https://github.com/enzonotario'
},
]
}
];
</script>

<VPTeamPage>
<VPTeamPageTitle>
<template #title>Our Team</template>
<template #lead>
Say hello to our awesome team.
</template>
<template #lead>Say hello to our awesome team.</template>
</VPTeamPageTitle>
<VPTeamMembers :members="members" />
<VPTeamPageSection>
<template #title>Contributors</template>
<template #lead>A big shout out to these awesome people</template>
<template #members>
<VPTeamMembers size="small" :members="contributors" />
</template>
</VPTeamPageSection>
</VPTeamPage>

0 comments on commit 6a6ac77

Please sign in to comment.